Hello, I would like to ask how can I cache my PHP Objects using Phalcon?
I would like to access these objects and change their properties from time to time. I've created my objects in Controller's initialize function, but every time I request something from the controller the properties of the object is changing.
I would like to store my objects in a manner that they will not change if I request something from the Controller.
Thank you in advance.