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
While nwaku features a sqlite3 database for persisting messages,
history queries are only answered from the in-memory store.
When starting a nwaku node, --store-capacity messages are loaded from the sqlite3 DB into the in-memory database.
We also limited the capacity limit for the persistent storage in #900, to avoid overly long starting times for nwaku nodes.
Goal / Motivation
For some applications, storing more messages is desired. For instance, keeping a history of one month of messages.
To achieve this, a first simple solution is introducing a (large capacity) sqlite3-only store.
A follow up issue will track a feasibility test of the sqlite3-only store.
(Performance might not be sufficient.)
Acceptance Criteria
sqlite3-only store implemented
tests added
Future Work
generic store interface
The text was updated successfully, but these errors were encountered:
Background
While
nwaku
features a sqlite3 database for persisting messages,history queries are only answered from the in-memory store.
When starting a
nwaku
node,--store-capacity
messages are loaded from the sqlite3 DB into the in-memory database.We also limited the capacity limit for the persistent storage in #900, to avoid overly long starting times for
nwaku
nodes.Goal / Motivation
For some applications, storing more messages is desired. For instance, keeping a history of one month of messages.
To achieve this, a first simple solution is introducing a (large capacity) sqlite3-only store.
A follow up issue will track a feasibility test of the sqlite3-only store.
(Performance might not be sufficient.)
Acceptance Criteria
Future Work
The text was updated successfully, but these errors were encountered: