i am writing an app which provides data to other websites. the data is stored in a database and only changes one or twice a week, but will be viewed many many times. i want to store the formatted data outside the database when it is updated, so clients aren't hitting the database thousands of times. when the request comes in, i need to verify that they are a current customer and then deliver the data. what is the best way to accomplish this? is it possible to store the info in a class and have the class globally available?