]> git.saurik.com Git - redis.git/commit - src/aof.c
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:27:35 +0000 (11:27 +0200)
commitc1d01b3c5796ee7e3f466e0db9f55d37e843cbb9
tree1bbdbb588580a46e8f74a04c2f2e055b479bae65
parent512f682340eb74aaedc525e834a943427999508c
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