redict/src
antirez 33e1db36fa Four new persistence fields in INFO. A few renamed.
The 'persistence' section of INFO output now contains additional four
fields related to RDB and AOF persistence:

 rdb_last_bgsave_time_sec       Duration of latest BGSAVE in sec.
 rdb_current_bgsave_time_sec    Duration of current BGSAVE in sec.
 aof_last_rewrite_time_sec      Duration of latest AOF rewrite in sec.
 aof_current_rewrite_time_sec   Duration of current AOF rewrite in sec.

The 'current' fields are set to -1 if a BGSAVE / AOF rewrite is not in
progress. The 'last' fileds are set to -1 if no previous BGSAVE / AOF
rewrites were performed.

Additionally a few fields in the persistence section were renamed for
consistency:

 changes_since_last_save -> rdb_changes_since_last_save
 bgsave_in_progress -> rdb_bgsave_in_progress
 last_save_time -> rdb_last_save_time
 last_bgsave_status -> rdb_last_bgsave_status
 bgrewriteaof_in_progress -> aof_rewrite_in_progress
 bgrewriteaof_scheduled -> aof_rewrite_scheduled

After the renaming, fields in the persistence section start with rdb_ or
aof_ prefix depending on the persistence method they describe.
The field 'loading' and related fields are not prefixed because they are
unique for both the persistence methods.
2012-05-25 12:11:30 +02:00
..
.gitignore Ignore gcov/lcov artifacts 2012-04-13 17:52:33 -07:00
adlist.c Process async client checks like client timeouts and BLPOP timeouts incrementally using a circular list. 2012-03-13 18:05:11 +01:00
adlist.h Process async client checks like client timeouts and BLPOP timeouts incrementally using a circular list. 2012-03-13 18:05:11 +01:00
ae_epoll.c ae_epoll.c typo introduced in the previous commit fixed. 2011-12-15 11:50:15 +01:00
ae_evport.c Whitespace 2012-05-15 11:19:01 +02:00
ae_kqueue.c Max limit to 10k clients removed, this implements feature request on issue #194 2011-12-15 11:42:40 +01:00
ae_select.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
ae.c Set fd to writable when poll(2) detects POLLERR or POLLHUP event. 2012-05-23 11:33:32 +02:00
ae.h Max limit to 10k clients removed, this implements feature request on issue #194 2011-12-15 11:42:40 +01:00
anet.c added explanation for the magic 511 backlog number 2012-04-11 17:04:31 +02:00
anet.h Added a config directive for a Unix socket mask 2011-10-10 11:21:15 -07:00
aof.c Four new persistence fields in INFO. A few renamed. 2012-05-25 12:11:30 +02:00
asciilogo.h ASCII ART FTW 2011-04-13 10:58:21 +02:00
bio.c Mask SIGALRM everything but in the main thread. 2012-03-27 13:48:57 +02:00
bio.h REDIS_BIO_AOF_FSYNC implemented 2011-09-15 18:25:53 +02:00
bitops.c BITOP command 10x speed improvement. 2012-05-24 15:20:20 +02:00
cluster.c Fixed a bug in propagation of PUBLISH via the cluster bus. 2012-04-24 11:28:10 +02:00
config.c Two small fixes to maxclients handling. 2012-04-18 11:31:24 +02:00
config.h first cut at event port support 2012-05-15 11:18:54 +02:00
crc16.c Exact variant of CRC16 specified into crc16.c 2011-10-02 14:05:29 +02:00
crc64.c crc64.c modified for incremental computation. 2012-04-09 12:20:47 +02:00
db.c Use safe dictionary iterator from KEYS 2012-05-01 10:52:03 +02:00
debug.c Impovements for: Redis timer, hashes rehashing, keys collection. 2012-05-13 21:52:35 +02:00
dict.c Even inside #if 0 comments are comments. 2012-04-21 21:49:21 +02:00
dict.h Fix for hash table collision attack. We simply randomize hash table initialization value at startup time. 2012-01-21 23:30:13 +01:00
endianconv.c endian.c/h -> endianconv.c/h to avoid issues with broken libraries search paths. 2012-02-14 16:11:46 +01:00
endianconv.h Add stdint.h in endianconv.h to fix issue #336. 2012-02-15 12:21:04 +01:00
fmacros.h Compilation fixed on OpenBSD making sure that _XOPEN_SOURCE is set to 700 in fmacros.h 2011-09-29 10:20:03 +02:00
help.h redis-cli commands description in help.h updated. 2012-04-27 15:57:27 +02:00
intset.c endian.c/h -> endianconv.c/h to avoid issues with broken libraries search paths. 2012-02-14 16:11:46 +01:00
intset.h encoded types API to get blob length 2011-02-28 14:48:49 +01:00
lzf_c.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzf_d.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzf.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
lzfP.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
Makefile bitop.c renamed bitops.c 2012-05-24 15:20:06 +02:00
Makefile.dep Makefile.dep updated. 2012-04-11 12:12:30 +02:00
memtest.c memtest.c fixed to actually use v1 and v2 in memtest_fill_value(). 2012-04-27 16:29:44 +02:00
mkreleasehdr.sh redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
multi.c Support for read-only slaves. Semantical fixes. 2012-03-20 17:32:48 +01:00
networking.c New client info field added to CLIENT LIST output: multi, containing the length of the current pipeline. Test modified accordingly. 2012-04-07 11:14:52 +02:00
object.c remove mentions of VM in comments 2012-04-02 11:56:03 +02:00
pqsort.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
pqsort.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
pubsub.c Use less memory when emitting the protocol, by using more shared objects for commonly emitted parts of the protocol. 2012-02-04 08:58:37 +01:00
rand.c libc neutral random function derived from a drand48() implementation added. Will be used to replace Lua's math.random implementation. 2011-09-23 14:51:48 +02:00
rand.h Defined macro with bigger number that redisLrand48() can output. 2011-09-23 15:06:07 +02:00
rdb.c Four new persistence fields in INFO. A few renamed. 2012-05-25 12:11:30 +02:00
rdb.h Add a 24bit integer to ziplists to save one byte for ints that can 2012-04-24 12:02:19 +02:00
redis-benchmark.c fix redis-benchmark memory leak 2012-02-26 10:01:27 +01:00
redis-check-aof.c redis-check-aof is now large files safe also on 32 bit systems. 2012-02-14 19:57:51 +01:00
redis-check-dump.c redis-check-dump now is RDB version 6 ready. 2012-04-24 19:05:27 +02:00
redis-cli.c Added time.h include in redis-cli. 2012-05-14 17:35:51 +02:00
redis-trib.rb redis-trib: fix the MIGRATE call that now has milliseconds timeout (were seconds before). 2012-03-31 11:28:37 +02:00
redis.c Four new persistence fields in INFO. A few renamed. 2012-05-25 12:11:30 +02:00
redis.h Four new persistence fields in INFO. A few renamed. 2012-05-25 12:11:30 +02:00
release.c redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
replication.c Dead code removed from replication.c. 2012-05-24 11:35:21 +02:00
rio.c Fixed compilation of new rio.c changes (typos and so forth.) 2012-04-09 12:36:44 +02:00
rio.h Make inline functions rioRead/Write/Tell static. This fixes issue #447. 2012-04-11 11:58:32 +02:00
scripting.c Set LUA_MASKCOUNT hook more selectively. Fixes issue #480. 2012-04-27 11:41:25 +02:00
sds.c Added consts keyword where possible 2012-03-30 21:19:51 +02:00
sds.h Added consts keyword where possible 2012-03-30 21:19:51 +02:00
sha1.c byte ordering detection in config.h 2011-03-09 15:44:21 +01:00
sha1.h redis.c split into many different C files. 2010-07-01 14:38:51 +02:00
slowlog.c Limit memory used by big SLOWLOG entries. 2012-04-21 20:34:45 +02:00
slowlog.h Limit memory used by big SLOWLOG entries. 2012-04-21 20:34:45 +02:00
solarisfixes.h Fix for solaris compilation bug Issue 325 2010-09-06 10:12:44 +02:00
sort.c Marginally cleaner lookupKeyByPattern() implementation. 2012-04-18 11:37:14 +02:00
syncio.c syncio.c read / write functions reworked for correctness and performance. 2012-05-02 22:41:50 +02:00
t_hash.c Replicate HINCRBYFLOAT as HSET. 2012-03-23 10:22:58 +01:00
t_list.c Document mostly dead code in RPOPLPUSH implementation. 2012-04-18 17:38:02 +02:00
t_set.c Fixed some spelling errors in the comments 2012-04-07 14:40:29 +02:00
t_string.c Bit-related string operations moved to bitop.c 2012-05-24 15:19:51 +02:00
t_zset.c Fixed issue #516 (ZINTERSTORE mixing sets and zsets). 2012-05-23 11:12:43 +02:00
testhelp.h testhelp.h now exits with retcode 1 on failed tests. 2011-11-02 16:52:10 +01:00
util.c Merge conflicts resolved. 2012-03-09 22:07:45 +01:00
util.h string2* functions take a const pointer 2012-01-02 15:24:50 -08:00
valgrind.sup more valgrind friendly test 2011-07-06 15:22:00 +02:00
version.h Version 2.9.7. 2012-04-10 16:34:33 +02:00
ziplist.c Compare integers in ziplist regardless of encoding 2012-05-06 10:06:21 +02:00
ziplist.h Implements ziplistFind 2012-01-03 16:13:42 -08:00
zipmap.c Fixed some spelling errors in the comments 2012-04-07 14:40:29 +02:00
zipmap.h save zipmap encoded hashes as blobs. Work in progress. 2011-02-28 09:56:48 +01:00
zmalloc.c define zlibc_free() in a way that is not shadowed by jemalloc. 2012-03-27 16:54:53 +02:00
zmalloc.h Jemalloc updated to 3.0.0. 2012-05-16 11:09:45 +02:00