c# - In-process cache VS. Out-of-process cache -


i've been working on small webpage display grid-view database table records in. have option user add record db, or update existing record.

currently use simple sql queries these , db small it's fine now. though prepare myself larger db's implement caching make display, insert , update commands faster. i've read 2 kinds of caches: in-process cache, , out-of-process cache.

can please explain or refer me explanation difference between two, , how implement them azure in c#? suppose want reads in-proc cache , writes out-of-proc cache, can that?

thanks in advance

i recommend decide on caching mechanism based on application type , requirements.

please go through following links

  1. azure basics
  2. azure client
  3. caching strategies
  4. high availability
  5. caching capacity planning guide

also please post additional details community can , suggest right approach. note appfabric supports local caching. can explore on area also.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -