Return true if this instance has persistence completely turned off: * both RDB and AOF are disabled. */
| 1641 | /* Return true if this instance has persistence completely turned off: |
| 1642 | * both RDB and AOF are disabled. */ |
| 1643 | int allPersistenceDisabled(void) { |
| 1644 | return server.saveparamslen == 0 && server.aof_state == AOF_OFF; |
| 1645 | } |
| 1646 | |
| 1647 | /* ======================= Cron: called every 100 ms ======================== */ |
| 1648 |
no outgoing calls
no test coverage detected