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
The current thought is to use a database to store logs, having the log for each channel in a separate table.
The columns in the table would then be nick, timestamp, type, and message.
MySQL or some actual proper database would be preferable, if we can get a server going and maintained for that.
We can use sqlite, but scalability becomes a problem, and we start having to split logs per year or even month (still unsure as to how well sqlite scales, my guess is not well)
Moving the user aliases into this same database for easy stat-creation would also be good.
The text was updated successfully, but these errors were encountered:
Actually, keeping user aliases as they are sounds good enough. They're kept in the bot.dataStore dict, and log searches and stat generation would be bot modules, so they'd have access to that.
The current thought is to use a database to store logs, having the log for each channel in a separate table.
The columns in the table would then be nick, timestamp, type, and message.
MySQL or some actual proper database would be preferable, if we can get a server going and maintained for that.
We can use sqlite, but scalability becomes a problem, and we start having to split logs per year or even month (still unsure as to how well sqlite scales, my guess is not well)
Moving the user aliases into this same database for easy stat-creation would also be good.
The text was updated successfully, but these errors were encountered: