Skip to content

Commit

Permalink
Database backends: fix bug, and small speedup
Browse files Browse the repository at this point in the history
-> Redis backend: break from switch to fix bug
-> Dummy and redis backends: reserve the count so that creating the list is faster
  • Loading branch information
est31 committed Dec 28, 2015
1 parent 382ab96 commit 8a46c5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/database-dummy.cpp
Expand Up @@ -47,6 +47,7 @@ bool Database_Dummy::deleteBlock(const v3s16 &pos)

void Database_Dummy::listAllLoadableBlocks(std::vector<v3s16> &dst)
{
dst.reserve(m_database.size());
for (std::map<s64, std::string>::const_iterator x = m_database.begin();
x != m_database.end(); ++x) {
dst.push_back(getIntegerAsBlock(x->first));
Expand Down
2 changes: 2 additions & 0 deletions src/database-redis.cpp
Expand Up @@ -169,10 +169,12 @@ void Database_Redis::listAllLoadableBlocks(std::vector<v3s16> &dst)
}
switch (reply->type) {
case REDIS_REPLY_ARRAY:
dst.reserve(reply->elements);
for (size_t i = 0; i < reply->elements; i++) {
assert(reply->element[i]->type == REDIS_REPLY_STRING);
dst.push_back(getIntegerAsBlock(stoi64(reply->element[i]->str)));
}
break;
case REDIS_REPLY_ERROR:
throw FileNotGoodException(std::string(
"Failed to get keys from database: ") + reply->str);
Expand Down

0 comments on commit 8a46c5d

Please sign in to comment.