i have coding a web application which has multi user. they are select data or insert data every thing is that. But selecting some data need too many time such as using LINQ or mathematical calculation. i thing that: my user1 :
select * from MyTable -----> save as caching via proxy server in machine
my user2 :
select * from MyTable2 -----> save as caching via proxy server in machine
my user3 :
insert into MyTable2 -----> Update caching(select * from MyTable2) via proxy server in machine
How to write a proxy server to select Faster and update select result if another user update table?