Hi there,
I’m currently developing a Rails API and I’ve stumbled upon some links on the internet about how to do so.
To be short, inheriting from ActionController::Metal is a way faster than inheriting from ActionController::Base because ActionController::Base loads a bunch of things that you’ll not need when developing an API.
I’m wondering if has any of you done that? If so, have you actually measure the differences between them?
Cheers,