Skip to content

Instantly share code, notes, and snippets.

@marionzualo
marionzualo / http-benchmark.md
Created June 15, 2016 06:19 — forked from denji/http-benchmark.md
HTTP(S) Benchmark Tools

Tools

Located in alphabetical order (not prefer)

  • ab – slow and single threaded
  • apib – most of the features of Apache Bench (ab), but is also intended as a more modern replacement
  • boom – HTTP(S) load generator, ApacheBench (ab) replacement, written in Go
  • curl-loader – performance loading of various application services and traffic generation
  • gatling – High performance load testing framework based on Scala, Akka and Netty
  • goad – Goad is an AWS Lambda powered, highly distributed, load testing tool
attachments: parent_id, asset_id
domain_names: organisation_id
event_memberships: user_id, event_id
events: editor_id
group_actions: user_id, group_id
groups: user_id
icons: parent_id
invitations: sender_id
legacy_actions: item_upon_id
news_items: author_id
@marionzualo
marionzualo / arel_use.rb
Created October 15, 2017 19:22 — forked from abelards/arel_use.rb
Ruby, Rails, ActiveRecord and Arel
# Welcome to my "arel gist"!
## It started hacky, then as an example, but we want it cleaner.
# ActiveRecord
## This is an ORM: you call Ruby methods and get Ruby objects, it makes SQL and object instantiations for you.
## It's Rails' default, but there are alternatives: https://github.com/Sdogruyol/awesome-ruby#orm
Student.all
Topic.first
Workshop.sum(:hours)