| 556 | } |
| 557 | |
| 558 | long long dbTotalServerKeyCount() { |
| 559 | long long total = 0; |
| 560 | int j; |
| 561 | for (j = 0; j < server.dbnum; j++) { |
| 562 | total += dictSize(server.db[j].dict); |
| 563 | } |
| 564 | return total; |
| 565 | } |
| 566 | |
| 567 | /*----------------------------------------------------------------------------- |
| 568 | * Hooks for key space changes. |
no outgoing calls
no test coverage detected