I have a few complex queries that are ran very often. Caching the results is not possible, as they're updated most of the time, and seeing the updated data is the whole point.
I'm not allowed to change the database settings, and those who are won't do it unless hell freezes over first, so I have to do everything I can to optimize queries and tables.
Since I think I already did all I could for these queries and the tables they use, I was thinking if there would be any gains in speed if I were to create stored procedures for them.
Would it work to increase speed, or should I look for something else?