Log entry max to 2k, remove logging in hot codepaths (#1459)
On a recent trip through a CPU profile taken while Signal Desktop churned through a large backlog of messages, it was clear that console.log was a major source of time spent, primarily the sort operation required after every new entry is added to the Backbone collection. So, three different techniques to combat this: 1) Reduce the maximum number of entries in the collection from 5k to 2k 2) No more logging of add/update/remove queue in MessageReceiver 3) No more log entries in Message.handleDataMessage main codepath FREEBIE
This commit is contained in:
parent
69af8d2651
commit
1e694fe8d7
4 changed files with 1 additions and 14 deletions
|
@ -343,13 +343,10 @@
|
|||
if (dataMessage.group) {
|
||||
conversationId = dataMessage.group.id;
|
||||
}
|
||||
console.log('queuing handleDataMessage', message.idForLogging());
|
||||
|
||||
var conversation = ConversationController.get(conversationId);
|
||||
return conversation.queueJob(function() {
|
||||
return new Promise(function(resolve) {
|
||||
console.log('starting handleDataMessage', message.idForLogging());
|
||||
|
||||
var now = new Date().getTime();
|
||||
var attributes = { type: 'private' };
|
||||
if (dataMessage.group) {
|
||||
|
@ -459,8 +456,6 @@
|
|||
});
|
||||
}
|
||||
|
||||
console.log('beginning saves in handleDataMessage', message.idForLogging());
|
||||
|
||||
var handleError = function(error) {
|
||||
error = error && error.stack ? error.stack : error;
|
||||
console.log('handleDataMessage', message.idForLogging(), 'error:', error);
|
||||
|
@ -492,8 +487,6 @@
|
|||
conversation.notify(message);
|
||||
}
|
||||
|
||||
console.log('done with handleDataMessage', message.idForLogging());
|
||||
|
||||
confirm();
|
||||
return resolve();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue