I getting data from a webservice. (one-time timelimited password used for login) Data only needs to be read, no updates.
I'm still looking for the best framework to put this in without making the small-medium site too heavy.
If I only gets my data from the webservice once, puts this in several objects.. Would it make sense to store this in cache and reuse it on other information pages?
Using mvc2, would it be sensible to put the entire entity model in HttpRuntime.Cache ? (I guess session is out of the question..)
thanks, nakori