Home
last modified time | relevance | path

Searched refs:aof (Results 1 – 10 of 10) sorted by relevance

/f-stack/app/redis-5.0.5/
H A Dredis.conf770 auto-aof-rewrite-percentage 100
771 auto-aof-rewrite-min-size 64mb
795 aof-load-truncated yes
806 aof-use-rdb-preamble yes
1247 aof-rewrite-incremental-fsync yes
H A D.gitignore6 redis-check-aof
16 appendonly.aof
H A DREADME.md336 aof.c and rdb.c
344 on disk and by `aof.c` in order to perform the AOF rewrite when the
347 The implementation inside `aof.c` has additional functions in order to
H A D00-RELEASENOTES190 …Enlarge error buffer in redis-check-aof.c to remove compiler warning of output truncation through …
210 aof: enhance AOF_FSYNC_EVERYSEC, more details in #5985
256 * A potential overflow in the redis-check-aof was fixed.
297 redis-check-aof: fix potential overflow.
1051 Streams: add tests for aof rewrite
1180 aof.c: improve indentation and change warning message.
1184 AOF: discard if we lost EXEC when loading aof
1945 Consider aof write error as well as rdb in lua script.
/f-stack/app/redis-5.0.5/src/
H A Daof.c1289 int rewriteAppendOnlyFileRio(rio *aof) { in rewriteAppendOnlyFileRio() argument
1304 if (rioWriteBulkLongLong(aof,j) == 0) goto werr; in rewriteAppendOnlyFileRio()
1324 if (rioWriteBulkObject(aof,&key) == 0) goto werr; in rewriteAppendOnlyFileRio()
1325 if (rioWriteBulkObject(aof,o) == 0) goto werr; in rewriteAppendOnlyFileRio()
1329 if (rewriteSetObject(aof,&key,o) == 0) goto werr; in rewriteAppendOnlyFileRio()
1345 if (rioWriteBulkObject(aof,&key) == 0) goto werr; in rewriteAppendOnlyFileRio()
1350 processed = aof->processed_bytes; in rewriteAppendOnlyFileRio()
1372 rio aof; in rewriteAppendOnlyFile() local
1387 rioInitWithFile(&aof,fp); in rewriteAppendOnlyFile()
1390 rioSetAutoSync(&aof,REDIS_AUTOSYNC_BYTES); in rewriteAppendOnlyFile()
[all …]
H A DMakefile185aof.o pubsub.o multi.o debug.o sort.o intset.o syncio.o cluster.o crc16.o endianconv.o slowlog.o s…
191 REDIS_CHECK_AOF_NAME=redis-check-aof
H A Dredismodule.h166 typedef void (*RedisModuleTypeRewriteFunc)(RedisModuleIO *aof, RedisModuleString *key, void *value);
/f-stack/app/redis-5.0.5/utils/create-cluster/
H A Dcreate-cluster25 …node-timeout $TIMEOUT --appendonly yes --appendfilename appendonly-${PORT}.aof --dbfilename dump-$…
83 rm -rf appendonly*.aof
H A D.gitignore3 *.aof
/f-stack/app/redis-5.0.5/src/modules/
H A Dhellotype.c220 void HelloTypeAofRewrite(RedisModuleIO *aof, RedisModuleString *key, void *value) { in HelloTypeAofRewrite() argument
224 RedisModule_EmitAOF(aof,"HELLOTYPE.INSERT","sl",key,node->value); in HelloTypeAofRewrite()