I've written a backend app for use with a iOS App. When I started the project, I didnt know OOP at all.
Now half the scripts are classes and I am using a mvc pattern and classes. It sure is easier to reuse my methods now, but now there is alot more going on with each request.
For a backend system that handles pre fabricated (Predictable) requests, is it better "performance-wise" to use basic procedural scripts or use mvc and oop?
I ask as it seems as though much more happens when using mvc and oop.