1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-08-07 13:29:49 +00:00

Implement locate_in_db() by hash.

This commit is contained in:
King_DuckZ 2016-07-12 16:42:27 +01:00
parent 01be1a94e5
commit afb2e68849
5 changed files with 71 additions and 2 deletions

View file

@ -250,7 +250,7 @@ namespace dindb {
}
std::vector<LocatedItem> BackendRedis::locate_in_db (const mchlib::TigerHash& parSearch, const TagList& parTags) {
return std::vector<LocatedItem>();
return dindb::locate_in_db(m_redis, parSearch, parTags);
}
std::vector<LocatedSet> BackendRedis::locate_sets_in_db (const std::string& parSearch, bool parCaseInsensitive) {