| 543 | } |
| 544 | |
| 545 | Status LocalRedis::BatchGetAsync(uint64_t model_version, |
| 546 | uint64_t feature2id, |
| 547 | const char* const keys, |
| 548 | char* const values, |
| 549 | size_t bytes_per_key, |
| 550 | size_t bytes_per_values, |
| 551 | size_t N, |
| 552 | const char* default_value, |
| 553 | BatchGetCallback cb) { |
| 554 | return errors::Unimplemented("[redis] unimplement BatchGetAsync() in async mode."); |
| 555 | } |
| 556 | |
| 557 | Status LocalRedis::BatchSetAsync(uint64_t model_version, |
| 558 | uint64_t feature2id, |
nothing calls this directly
no test coverage detected