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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Features
11
11
- A really simple `key => value` store that speaks `redis` protocol but with our rules!.
12
12
- A real system that you can abuse! it isn't intedented for cache only but a "database system".
13
13
-`Async` (all writes happen in the background), or `Sync` it won't respond to the client before writing to the internal datastore.
14
-
- Pluggable storage engines, currently it supports `postgresql`, and there may be more engines be introduced in the upcomning releases.
14
+
- Pluggable storage engines, currently it supports (`postgresql`, `filesystem`), and there may be more engines be introduced in the upcomning releases.
15
15
- It could be used using `redis` clients easily, i.e: "the famouus redis-cli"
16
16
17
17
@@ -23,9 +23,9 @@ Core Commands
23
23
-`FLUSHDB`
24
24
-`SELECT <DB index>`
25
25
-`SET <key> <value> [EX seconds | KEEPTTL] [NX]`
26
-
-`TTL <key>`
26
+
-`TTL <key>`**(not supported while using `filesystem` engine)**
27
27
-`GET <key> [DELETE]`, it has an alias for backward compatibility reasons called `GETDEL <key>`
28
-
-`INCR <key> [<delta>]`, it has an alias for backward compatibility reasons called `INCRBY`
28
+
-`INCR <key> [<delta>]`, it has an alias for backward compatibility reasons called `INCRBY`**(not supported while using `filesystem` engine)**
29
29
-`DEL key [key ...]`
30
30
-`HGETALL <prefix>`
31
31
> Fetches the whole data under the specified prefix as a hashmap result
0 commit comments