I have created metro style Grid Application which preview data that i get it from web service ,but it’s so bad in performance and make app so slow , i want to cache data that i get from web service to improve performance
any help ,
thanks in advance.
I have created metro style Grid Application which preview data that i get it
Share
You could use SQLite to store the data. Here’s an article on how to do that in a WinRT app: http://timheuer.com/blog/archive/2012/05/20/using-sqlite-in-metro-style-app.aspx
What you would cache depends on the type of data and usage scenarios of your app, but you can store your data in the SQLite store and try to get it from there if you are offline or simply before you do try to get it from the web service.