1
vote
1answer
28 views

technical considerations for including an extraneous javascript library in a Rails project

I recently included Handlebars.js in a rails project, and a coworker balked at the notion. What are the realistic technical considerations when including an extra javascript library into a rails ...
0
votes
1answer
26 views

What is a way I can measure a performance difference before and after implementing state_machine gem?

I'm almost finished implementing pluginaweek's state_machine gem and I'd like to try and measure something before I implement it so I can remeasure afterwards and see a difference. Right now there's a ...
0
votes
0answers
54 views

Should benchmark warmup time be taken into account?

This is my first time using benchmarking for Rails, and I'm testing out two methods of querying my DB. They both return a very similar result for the wall-time and process-time, but the warmup time ...
0
votes
0answers
127 views

Test Speed: ActiveRecord use_transactional_fixtures vs. DatabaseCleaner.strategy = :transaction

Judging from the source(database_cleaner, active_record), it appears that they should be equally fast. But there are claims that using database_cleaner's transaction strategy slows down controller and ...
0
votes
1answer
393 views

Apache benchmark multipart/form-data

i'm facing a strange problem with apache benchmark post file. I need to stress a feature that handles file upload. So, I googled about, and found a post describing how to build a post file properly. ...
1
vote
1answer
907 views

How much faster is SLIM compared to HAML? [closed]

I'm trying to convince my team members to use SLIM instead of HAML because I like SLIM's syntax a lot more. I was promised that we would change to SLIM if it was really a lot faster than HAML as I ...
2
votes
1answer
96 views

How can I measure how much memory each thread is using in a puma deployment?

In a threadsafe rails app running on puma, how can I measure how much memory each thread uses?
4
votes
1answer
219 views

How to benchmark the startup of my Rails app?

I put my Rails application on Heroku, and I see now that it has a very slow startup time. What I mean by this is that, when I first go to my website on Heroku (with a browser), it takes too much time ...
1
vote
2answers
226 views

Benchmarking controller + view together, many times in one go

I am learning how to benchmark two implementations in the controller/view. They are doing th e same thing, but one is done in view and another in controller. The code is shown below. My questions are: ...
4
votes
1answer
145 views

How can I benchmark why Ruby is suddenly so slow on my machine?

I've been developing Ruby on Rails on my Macbook Pro for quite some time, but recently I'm starting to notice, that everything is just taking forever. Even simple things like rake -T take over 30 ...
4
votes
1answer
812 views

Is 100 or less requests per second (for non-cached pages) what one can expect with Rails?

Preface: Please don't start a discussion on premature optimization, or anything related. I'm just trying to understand what kind of performance I can get from a single server with rails. I have ...
2
votes
1answer
325 views

How to profiling a slow action in Rails?

I have an action costs about 10s: Completed 200 OK in 9489ms (Views: 1.3ms | ActiveRecord: 71.6ms) I tried to wrap the whole action with benchmark: def action self.class.benchmark("Processing ...
2
votes
2answers
161 views

If a page takes 1 ms to render, does that mean 1000 pages per second?

If a webpage takes 1 ms to render, does that mean my application can do 1000 pages per second? I understand it also depends on other things like db connections and locks, but in general is that a ...
0
votes
0answers
116 views

Rails: HABTM relationship performance, alternatives?

My app has Places with many different categories of attributes. Each place has a HABTM relationship with these attributes. For instance (in psuedo code): Place has_many :land_uses #options: ...
2
votes
3answers
2k views

How to count occurrences of a substring within string fast with Ruby

I have a text file sized 300MB, I want to count the occurrences of each 10,000 substrings in the file. I want to know how to do it fast. Now, I use the following code: content = ...
1
vote
1answer
81 views

Is there a current tool for creating a profiling report like this?

The ruby-prof and pprof.rb libraries is useful but in my mind seem to give alot of unnecessary information (by not letting me filter out all of the rails code). What would be great would be to run a ...
1
vote
2answers
1k views

How can I accurately benchmark the time it takes to load a model?

I want to benchmark the time it takes to load a module (a find_by_id(234) call). Also, how can I track the time it takes to load a page, I know I get this information when I run rails server, but ...
0
votes
1answer
345 views

Rails benchmark the filter chain?

I'm doing some optimisation on my Rails (2.3.5) app, and can't seem to find an elegant way of benchmarking the filter chain. I'm ab testing the site with something like: ab -n 200 -c 3 -i -k ...
5
votes
2answers
856 views

Rails gems/tools for performance benchmarking?

I'm looking for tools to monitor/test performance in rails, and I'm not having much luck finding anything particularly effective. I've read the rails 'performance' guide, but I use RSpec instead of ...
12
votes
1answer
3k views

Rails: Performance benchmarking using RSPec

I'm just coming across to RSpec from rake:test, and I'm struggling to find any equivalent to rake test:benchmark and/or rake test:profile. So, what do most rspec folks use for performance testing? ...
0
votes
1answer
76 views

In Rails, why “action_controller/benchmarking.rb” is running?

While checking why a page is loading fairly slowly, I saw that /vendor/rails/actionpack/lib/action_controller/benchmarking.rb is being run. Why is it running (is it something in the config file? ...
2
votes
2answers
542 views

Benchmarking rails ActiveRecord Queries

I'm looking to benchmark a couple of my ActiveRecord requests in my app. What's the simplest way in the console to benchmark something like User.find_by_name("Joe").id versus User.find(:first, ...
1
vote
2answers
701 views

How to benchmark and optimize a really database-intensive Rails action?

There is an action in the admin section of a client's site, say Admin::Analytics (that I did not build but have to maintain) that compiles site usage analytics by performing a couple dozen, rather ...
1
vote
1answer
2k views

Grails benchmarks compared to other web MVC platform (Rails, Django, ASP MVC)?

I have been searching the web for recent benchmarks measuring Grails overall performance compared to its competitors (Rails, Django, ASP.NET MVC...), but I didn't find anything more recent than a 3 ...
3
votes
1answer
2k views

Benchmarking Rails Model Methods

Is there something similar to Ruby Benchmark within Rails? I have used Ruby benchmark in the past to compare different bits of code, but none of it was Rails related. I would like to use my ...
0
votes
1answer
797 views

Ruby on Rails question - how can I measure response time from when request first hits app?? (e.g. using 'benchmark')

Background - I'm serving files (text, images) to a browser via my Rails application as the user needs to be authenticated too. The files are on file system, however references are in the database, as ...
3
votes
4answers
1k views

Rails App/webserver benchmarking

Does anyone know the best lightweight Rails benchmarking tool? I need to get performance statistics of the webserver and simulate authentication + page navigation per session. I've been trying to use ...
7
votes
3answers
3k views

Understanding Ruby on Rails render times

I am working on an "optimization" on my application and I am trying to understand the output that rails (version 2.2.2) gives at the end of the render. Here is the "old" way: Rendered user/_old_log ...
5
votes
3answers
4k views

Are there benchmarks comparing the respective memory usage of django, rails and PHP frameworks?

I have to run a Web server with many services on an embedded server with limited RAM (1 GB, no swap). There will be a maximum of 100 users. I will have services such as a forum, little games ...