diff options
author | antirez <antirez@gmail.com> | 2013-01-25 13:19:08 +0100 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2013-01-28 13:18:36 +0100 |
commit | b9bc4f9132e92b54cb0521511a7859dc34ad5cf9 (patch) | |
tree | ec961c2b9085779f69bfc1c0e69e944cef1837a6 /tests | |
parent | 6de052cd774989864012154f045ac56df6aa4418 (diff) | |
download | redis-b9bc4f9132e92b54cb0521511a7859dc34ad5cf9.tar.gz |
Keyspace events: it is now possible to select subclasses of events.
When keyspace events are enabled, the overhead is not sever but
noticeable, so this commit introduces the ability to select subclasses
of events in order to avoid to generate events the user is not
interested in.
The events can be selected using redis.conf or CONFIG SET / GET.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/assets/default.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/assets/default.conf b/tests/assets/default.conf index f264bed3c..8d68e74f4 100644 --- a/tests/assets/default.conf +++ b/tests/assets/default.conf @@ -13,7 +13,7 @@ # units are case insensitive so 1GB 1Gb 1gB are all the same. # Enable keyspace events notification for testing so that we cover more code. -notify-keyspace-events yes +notify-keyspace-events A # By default Redis does not run as a daemon. Use 'yes' if you need it. # Note that Redis will write a pid file in /var/run/redis.pid when daemonized. |