1
0
mirror of git://jb55.com/damus synced 2024-09-16 02:03:45 +00:00

Ndb: update to use new nostrdb config struct

This commit is contained in:
William Casarin 2023-12-02 13:43:40 -08:00
parent 65be56ba7c
commit dd78272a5e

View File

@ -67,7 +67,8 @@ class Ndb {
let ok = path.withCString { testdir in
var ok = false
while !ok && mapsize > 1024 * 1024 * 700 {
ok = ndb_init(&ndb_p, testdir, mapsize, ingest_threads, 0) != 0
var cfg = ndb_config(flags: 0, ingester_threads: ingest_threads, mapsize: mapsize, filter_context: nil, ingest_filter: nil)
ok = ndb_init(&ndb_p, testdir, &cfg) != 0
if !ok {
mapsize /= 2
}