]> git.saurik.com Git - redis.git/commit
New INFO field aof_delayed_fsync introduced.
authorantirez <antirez@gmail.com>
Sun, 25 Mar 2012 09:27:35 +0000 (11:27 +0200)
committerantirez <antirez@gmail.com>
Sun, 25 Mar 2012 09:43:38 +0000 (11:43 +0200)
commit81f32c7b65c72a45fe1637ab0a661b144c54eb7c
tree00b07bb57bd31c926f7c267f84dab24c78de783e
parent754643c1c703c773e03efec23a2b55ac5ba324cb
New INFO field aof_delayed_fsync introduced.

This new field counts all the times Redis is configured with AOF enabled and
fsync policy 'everysec', but the previous fsync performed by the
background thread was not able to complete within two seconds, forcing
Redis to perform a write against the AOF file while the fsync is still
in progress (likely a blocking operation).
src/aof.c
src/config.c
src/redis.c
src/redis.h