Hi
I am working today with the AOF file via docker volume. each time the server starts it reads the AOF. it comes to a point that I need to wait 10 minutes and more to load the entire graph (using redisgraph).
I want to continue using append-only for durable and high integrity backups, but still when the server loads to load from rdb file since it much faster as far as I read.
Since I have appendonly yes, it will always load from it.
How can I work hybrid?
Hi @avi, I assume you have issues with redis slowly loading the AOF file. Please correct me if I am wrong.
AOF is generally slow to read since it’s an append-only backup, whereas RDB will be fast to startup, and slow to write. Since your use case seems to be needing an instant-redis startup, I would recommend going to using replication instead (slaveof/replica), so that you can always have a ready instance and you can have multiple replicas.