#Faster backend via Go/Elixir
1 messages · Page 1 of 1 (latest)
I guess it depends on the use case, but usually PHP/Laravel isn't the performance bottleneck. Eloquent does add some overhead, but it's usually only a problem if you're fetching thousands of rows which you rarely need to do. And in those cases you can easily bypass Eloquent by calling toBase() on the query builder.
Do you have any specific use cases in mind?