Reputation: 26635
I want to retrieve datas from database for once after opening the application and keep them somewhere in application. I read about Isolated Storage, in-memory caching in Silverlight. Also I have read this: Can I cache data in silverlight that is used by all users? But I can not choose what I must use. I am using Silverlight 4. Thanks.
Upvotes: 1
Views: 323
Reputation: 17680
It really depends.
If all your users are using a single machine then putting stuff on isolated storage might make sense. Isolated storage is located on the machine the users request the app from and that data cannot be shared with other users on other machines.
Caching on the server may work but i fail to see the benefit except in scenarios where the data doesn't change very often and you are trying to avoid hitting the database too often.
Upvotes: 1