soju/msgstore
delthas 1ccc7ce6d2 Add a database store for messages
This adds a new config option, `logs db`, which enables storing chat
logs in the soju database.

Regular store options, CHATHISTORY options, and SEARCH operations are
supported, like the fs logs backend.

Messages are stored in a new table, Message. In order to track the list
of targets we have messages for in an optimized manner, another database
is used: MessageTarget.

All new requests are backend by indexes so should be fast even with
hundreds of thousands of messages.

A contrib script is provided for migrating existing logs fs chat logs to
the database. It can be run with eg:

  go run ./contrib/migrate-logs/ logs/ sqlite3:soju.db

Co-authored-by: Simon Ser <contact@emersion.fr>
2023-02-17 14:13:43 +01:00
..
db.go Add a database store for messages 2023-02-17 14:13:43 +01:00
fs.go Add a database store for messages 2023-02-17 14:13:43 +01:00
memory.go Upgrade to gopkg.in/irc.v4 2022-11-14 12:06:58 +01:00
msgstore.go Add a database store for messages 2023-02-17 14:13:43 +01:00