mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
pager: bump default page cache size from 10 to 1000 pages
``` Gnuplot not found, using plotters backend Execute `SELECT count() FROM users`/limbo_execute_select_count time: [12.867 µs 12.958 µs 13.104 µs] change: [-91.233% -91.178% -91.120%] (p = 0.00 < 0.05) Performance has improved. ```
This commit is contained in:
parent
a6270e8a6c
commit
b16044f34b
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ impl Database {
|
|||
None
|
||||
};
|
||||
|
||||
let shared_page_cache = Arc::new(RwLock::new(DumbLruPageCache::new(10)));
|
||||
let shared_page_cache = Arc::new(RwLock::new(DumbLruPageCache::new(1000)));
|
||||
let schema = Arc::new(RwLock::new(Schema::new()));
|
||||
let db = Database {
|
||||
mv_store,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue