forked from microsoftarchive/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
random tested mode for test-redis.tcl, minor other stuff, version swi…
…tched to 0.8
- Loading branch information
Showing
4 changed files
with
39 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ redis-server | |
redis-benchmark | ||
doc-tools | ||
mkrelease.sh | ||
release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,9 @@ | ||
BETA 8 TODO | ||
- Protocol changes as discussed in the Redis group | ||
- keys expire | ||
- sunion ssub | ||
- write integers in a special way on disk (and on memory?) | ||
- compact types for disk storing of short strings (no 4 bytes overhead!) | ||
- network layer stresser in test in demo | ||
- maxclients directive | ||
- check 'server.dirty' everywere | ||
- replication tests | ||
- command line client. If the last argument of a bulk command is missing get it from stdin. Example: | ||
$ echo "bar" | redis-client SET foo | ||
$ redis-client SET foo bar | ||
$ redis-client GET foo | ||
bar | ||
$ | ||
- Make Redis aware of the memory it is using thanks to getrusage() and report this info with the INFO command. | ||
- INFO command: clients, slave/master, requests/second in the last N seconds, memory usage, uptime, dirty, lastsave | ||
|
||
FUTURE | ||
|
||
ROLLBACK command: | ||
|
||
ROLLBACK UNSET x | ||
SET x 10 | ||
EXPIRE x 3600 | ||
COMMIT | ||
|
||
(multiple rollbacks are allowed) | ||
|
||
or alternatively | ||
|
||
TRANSACTION SET x 1000 | ||
TRANSACTION EXPIRE x 1000 | ||
COMMIT | ||
|
||
but this sucks since there is no way to check the error message. | ||
|
||
- Prevent the client to issue SYNC or MONITOR multiple times | ||
- replication automated tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters