console.info('count messages of ',source,' :',count);
if(!count){
return0;
}
returncount['count(*)']||0;
}
functiongetMessageBySenderAndTimestamp({
source,
timestamp,
@ -3126,7 +3148,7 @@ function removeKnownAttachments(allAttachments: any) {
functiongetMessagesCountByConversation(
conversationId: string,
instance?: BetterSqlite3.Database|null
){
):number{
constrow=assertGlobalInstanceOrInstance(instance)
.prepare(`SELECT count(*) from ${MESSAGES_TABLE} WHERE conversationId = $conversationId;`)
.get({conversationId});
@ -3334,6 +3356,81 @@ function removeV2OpenGroupRoom(conversationId: string) {
});
}
functioncleanUpOldOpengroups() {
constv2Convos=getAllOpenGroupV2Conversations();
// For each opengroups, if it has more than 1000 messages, we remove all the messages older than 2 months.
// So this does not limit the size of opengroup history to 1000 messages but to 2 months.
// This is the only way we can cleanup conversations objects from users which just sent messages a while ago and with whom we never interacted.
// This is only for opengroups, and is because ALL the conversations are cached in the redux store. Having a very large number of conversations (unused) is deteriorating a lot the performance of the app.
// Another fix would be to not cache all the conversations in the redux store, but it ain't going to happen anytime soon as it would a pretty big change of the way we do things and would break a lot of the app.
constmaxMessagePerOpengroupConvo=1000;
// first remove very old messages for each opengroups