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:
Jussi Saurio 2025-05-16 09:23:42 +03:00
parent a6270e8a6c
commit b16044f34b

View file

@ -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,