We have this 90.000 lines Json object that takes 5 seconds to load. We need to load all this data since there is a lot of relations that needs to be included. Fortunately this data almost never change so it will basically always be the same (it do need to be able to snap out of the cache if the data updates)
Im not that good on server side cache so my question is.
If i cache this serverside i guess all users will be served the cached answer until the cache releases?
Can i cache this response on the server for until i somehow tell the api stop caching this? Its fine to hold 24 hours cache
Any libriaries that i can achieve this with?
Regards