You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To store the knowledge base we first translate it to a bigstring and then dump this bigstring into a file. Given that knowledge base could be tremendous in size it is not only suboptimal (we create an in-memory buffer and copy the knowledge twice) but also infeasible since we may just run out-of-memory. A better solution would be to memory map the file and write knowledge directly to it.