| 320 | } |
| 321 | |
| 322 | bool RedisClient::GetData( const std::string& key, std::string& type, RedisResult& results ) |
| 323 | { |
| 324 | redisReply* reply = NULL; |
| 325 | if (!Type(key, type)) return false; |
| 326 | |
| 327 | if (type == "none") return false; |
| 328 | m_pModelFactory.reset(new RedisModelFactory(this)); |
| 329 | return m_pModelFactory->GetRedisModel(type)->GetData(key, results); |
| 330 | } |
| 331 | |
| 332 | bool RedisClient::DelKey( const std::string& key ) |
| 333 | { |
nothing calls this directly
no test coverage detected