Return true if this instance has persistence completely turned off: * both RDB and AOF are disabled. */
| 1755 | /* Return true if this instance has persistence completely turned off: |
| 1756 | * both RDB and AOF are disabled. */ |
| 1757 | int allPersistenceDisabled(void) { |
| 1758 | return g_pserver->saveparamslen == 0 && g_pserver->aof_state == AOF_OFF; |
| 1759 | } |
| 1760 | |
| 1761 | /* ======================= Cron: called every 100 ms ======================== */ |
| 1762 |
no outgoing calls
no test coverage detected