Skip to content

Instantly share code, notes, and snippets.

@chirino
Last active December 21, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chirino/6242408 to your computer and use it in GitHub Desktop.
Save chirino/6242408 to your computer and use it in GitHub Desktop.
val scenario = new com.github.stomp.benchmark.NonBlockingScenario
scenario.host = "localhost"
scenario.port = 61613
scenario.display_errors = true
scenario.login = Some("admin")
scenario.passcode = Some("password")
scenario.destination_count = 1;
scenario.destination_type = "queue";
scenario.destination_name = "example"
scenario.producers = 1;
scenario.message_size = 20
scenario.sync_send = false
scenario.persistent = false
scenario.consumers = 10000;
scenario.ack = "client"
scenario.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment