aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/update/Queue.cxx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* db/simple: mount pointsMax Kellermann2014-02-271-2/+27
| | | | | | | | A SimpleDatabase instance can now "mount" other Database instances at certain locations. This is used to use a new SimpleDatabase instance for each storage mount (issued with the "mount" protocol command). Each such instance has its own database file, stored in the directory that is specified with the "cache_directory" option.
* db/update/Queue: use std::list instead of std::queueMax Kellermann2014-02-271-2/+2
| | | | | | The problem with std::queue is that it doesn't give us enough control. The method Clear() is a kludge already, but soon, we'll need filtering.
* db/update: convert to OO APIMax Kellermann2014-01-301-0/+42
Move global variables into the new classes. That may allow multiple update threads for multiple databases one day.