| 549 | } |
| 550 | |
| 551 | int selectDb(client *c, int id) { |
| 552 | if (id < 0 || id >= server.dbnum) |
| 553 | return C_ERR; |
| 554 | c->db = &server.db[id]; |
| 555 | return C_OK; |
| 556 | } |
| 557 | |
| 558 | long long dbTotalServerKeyCount() { |
| 559 | long long total = 0; |
no outgoing calls
no test coverage detected