We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 008306b commit 92f76f0Copy full SHA for 92f76f0
src/osgEarthDrivers/cache_sqlite3/SQLite3Cache
@@ -28,10 +28,17 @@ namespace osgEarth { namespace Drivers
28
virtual ~SQLite3CacheOptions() { }
29
30
public:
31
+ //! Location of the cache files
32
OE_OPTION(std::string, rootPath);
33
+
34
+ //! Number of threads to devote to background cache writing
35
OE_OPTION(unsigned, threads, 2u);
36
37
+ //! Tiemout (milliseconds) when trying to local a db
38
OE_OPTION(unsigned, busyTimeout, 5000u);
- OE_OPTION(bool, separateBins, false);
39
40
+ //! Whether to use a separate .db for each CacheBin
41
+ OE_OPTION(bool, separateBins, true);
42
43
44
virtual Config getConfig() const {
0 commit comments