Skip to content

Instantly share code, notes, and snippets.

This guide helps to test websocket load test with jmeter.
https://blazemeter.com/blog/websocket-testing-apache-jmeter
Github has the code and jar file to test
https://github.com/maciejzaleski/JMeter-WebSocketSampler
@pontiyaraja
pontiyaraja / Git conflict
Created January 28, 2016 12:38
Resolve git conflict in command line
Step 1: From your project repository, bring in the changes and test.
git fetch origin
git checkout -b server origin/server
git merge master
Step 2: Merge the changes and update on GitHub.
git checkout master
git merge --no-ff server