You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@
7
7
8
8
A fast and minimal paste bin, written in Python using Quart.
9
9
10
-
> **IMPORTANT NOTICE** Some deprecated features will be removed in V1.7, view [here](https://github.com/enchant97/hasty-paste/issues/50)
10
+
> **IMPORTANT NOTICE** Some deprecated features have been removed in V1.7, view [here](https://github.com/enchant97/hasty-paste/issues/50)
11
11
12
12
## Features
13
13
- Quickly paste and save, to share some text
@@ -20,13 +20,17 @@ A fast and minimal paste bin, written in Python using Quart.
20
20
- Uses minimal resources
21
21
- REST API
22
22
- No Database needed, everything stored as flat-files
Hasty Paste supports tired caching. For example both the internal cache and Redis cache can be used. The priority of the cache types are shown below:
70
+
71
+
```
72
+
Internal -> Redis -> Miss
73
+
```
74
+
75
+
If you are using multiple workers (set via `WORKERS`), each worker does **not** share memory. This means when using the internal cache, each cached item will be duplicated across workers (increasing memory usage). If this is the case you may want to use Redis and select a smaller internal cache size.
76
+
67
77
## With Docker (Recommended)
68
78
This will assume you have both Docker and Docker Compose installed.
0 commit comments