Last active
August 29, 2015 14:19
-
-
Save umamialex/207d4dde5d0c53bd1ab0 to your computer and use it in GitHub Desktop.
Revisions
-
umamialex revised this gist
Apr 24, 2015 . 1 changed file with 2 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,10 +4,8 @@ var client = new HelpEsb.Client('tcp://localhost:8900'); client.login('memory-test'); setInterval(function() { client.rpcSend('memory test', 'test'); }, 10); var memoryLogger = require('memory-logger'); memoryLogger.start(); -
umamialex revised this gist
Apr 24, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ client.login('memory-test'); setInterval(function() { for (var i = 0; i < 10; i++) { client.rpcSend('memory test', 'test'); } }, 100); -
umamialex revised this gist
Apr 24, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,7 @@ "dependencies": { "bluebird": "^2.9.24", "help-esb": "^0.6.7", "memory-logger": "git+https://gist.github.com/01d17e3280841c01d75e.git" }, "devDependencies": {}, "scripts": { -
umamialex revised this gist
Apr 24, 2015 . 1 changed file with 1 addition and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,8 +6,7 @@ "dependencies": { "bluebird": "^2.9.24", "help-esb": "^0.6.7", "memory-logger": "^0.1.0" }, "devDependencies": {}, "scripts": { -
umamialex revised this gist
Apr 24, 2015 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,6 @@ "main": "server.js", "dependencies": { "bluebird": "^2.9.24", "help-esb": "^0.6.7", "memory-logger": "^0.1.0", "newrelic": "^1.18.4" -
umamialex created this gist
Apr 24, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ { "name": "help-esb-memory-test-sender", "version": "0.1.0", "description": "A test using the help-esb client. This is the sender half.", "main": "server.js", "dependencies": { "bluebird": "^2.9.24", "lodash": "^3.7.0", "help-esb": "^0.6.7", "memory-logger": "^0.1.0", "newrelic": "^1.18.4" }, "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "start": "node server.js" }, "author": "Alexander Martin", "license": "MIT" } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ var HelpEsb = require('help-esb'); var client = new HelpEsb.Client('tcp://localhost:8900'); client.login('memory-test'); setInterval(function() { for (var i = 0; i < 10; i++) { client.rpcSend('memory test', 'test').then(function() { }); } }, 100); var memoryLogger = require('memory-logger'); memoryLogger.start();