Slow JSON generation time in Rails

290 Views Asked by At

I am currently trying to render a fairly large JSON, from a database model, with some translations using Globalize.

It seems the problem is at the rendering process, not at loading the model and his translations.

Completed 200 OK in 1141ms (Views: 990.6ms | ActiveRecord: 16.7ms)

The final JSON size is about 18k lines and it takes around ~2-3 seconds to complete the generation.

I tried to switch to oj, but I did not see any significant performance, is this normal ?

Also, I tried the surus gem, which works great (around 90ms), but it does not seems to support Globalize (which is normal, because it is working at the database level directly, no through ActiveRecord).

I was wondering if there is any other things I could use/check/try to improve the generation time ? Yes I could use some kind of caching, but I would like to avoid it, unless it is truly necessary.

Edit: We are still using Rails 3.x, I don't know if there is any improvement on this topic in Rails 4.x.

0

There are 0 best solutions below