0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-27 19:28:52 +02:00

modules/console: Use db::has() rather than db::fetch() for cache prefetching.

This commit is contained in:
Jason Volk 2018-09-01 21:16:25 -07:00
parent f38aadc35b
commit 8a0749b232

View file

@ -1590,7 +1590,7 @@ try
database, colname
};
db::fetch(cache(column), column, key);
db::has(column, key);
return true;
}
catch(const std::out_of_range &e)