Lachim / redis

Automatically exported from code.google.com/p/redis
2 stars 0 forks source link

Starting redis with no save set should not read data from rdb file #610

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I'm currently working with the 2.20 version of redis in combination with the 
booksleeve client library on the Windows platform.

Although I configured not to persist to the rdb store (all save commands are 
commented out) the redis instance still reads (stale) data from that file at 
startup. Is there a way to suppress this?

Original issue reported on code.google.com by mdelatho...@gmail.com on 26 Jul 2011 at 9:04

GoogleCodeExporter commented 8 years ago
It's not a bug. You can easily give a different, non-existent database file 
name. That will prevent the server from reading the dump.rdb.

Original comment by syrn...@gmail.com on 27 Jul 2011 at 6:54