I'm trying to use mixed persistency (RDB + AOF as tail) in Redis with the following configuration:
aof-use-rdb-preamble yes
appendonly yes
save 10 1 # <-- just to speed the tests
I assume from https://github.com/antirez/redis/blob/4.0/redis.conf#L746-L782 that when Redis is restarted, it loads the seed data from [RDB file][AOF tail].
I would like that every time the RDB is written, the AOF file would be flushed in order to keep in it only the tail (the latest updates since the last RDB saving).
Is this possible through some configuration?