Click here to Skip to main content
15,888,590 members
Home / Discussions / C#
   

C#

 
AnswerRe: gfhfgh Pin
Wes Aday9-Oct-12 5:06
professionalWes Aday9-Oct-12 5:06 
AnswerRe: gfhfgh Pin
Dave Kreskowiak9-Oct-12 6:00
mveDave Kreskowiak9-Oct-12 6:00 
JokeRe: gfhfgh Pin
Paul Conrad10-Oct-12 7:41
professionalPaul Conrad10-Oct-12 7:41 
AnswerRe: gfhfgh Pin
Keith Barrow9-Oct-12 6:27
professionalKeith Barrow9-Oct-12 6:27 
GeneralRe: gfhfgh Pin
OriginalGriff9-Oct-12 21:08
mveOriginalGriff9-Oct-12 21:08 
QuestionHelp With Delegates Pin
WebMaster9-Oct-12 3:00
WebMaster9-Oct-12 3:00 
AnswerRe: Help With Delegates Pin
n.podbielski9-Oct-12 3:53
n.podbielski9-Oct-12 3:53 
AnswerRe: Help With Delegates Pin
BobJanova9-Oct-12 3:53
BobJanova9-Oct-12 3:53 
AnswerRe: Help With Delegates Pin
Stefano Manni10-Oct-12 0:00
Stefano Manni10-Oct-12 0:00 
Questionhow to use subtract operation in windows form applicaion Pin
sri apple9-Oct-12 1:58
sri apple9-Oct-12 1:58 
AnswerRe: how to use subtract operation in windows form applicaion PinPopular
Pete O'Hanlon9-Oct-12 2:10
mvePete O'Hanlon9-Oct-12 2:10 
GeneralRe: how to use subtract operation in windows form applicaion PinPopular
Eddy Vluggen9-Oct-12 2:47
professionalEddy Vluggen9-Oct-12 2:47 
GeneralRe: how to use subtract operation in windows form applicaion Pin
Pete O'Hanlon9-Oct-12 3:06
mvePete O'Hanlon9-Oct-12 3:06 
GeneralRe: how to use subtract operation in windows form applicaion Pin
Shameel9-Oct-12 4:56
professionalShameel9-Oct-12 4:56 
AnswerRe: how to use subtract operation in windows form applicaion Pin
Eddy Vluggen9-Oct-12 2:46
professionalEddy Vluggen9-Oct-12 2:46 
AnswerRe: how to use subtract operation in windows form applicaion Pin
KiranKumar Roy14-Oct-12 1:47
KiranKumar Roy14-Oct-12 1:47 
QuestionDatacache Pin
nitin_ion9-Oct-12 0:25
nitin_ion9-Oct-12 0:25 
AnswerRe: Datacache Pin
Pete O'Hanlon9-Oct-12 0:40
mvePete O'Hanlon9-Oct-12 0:40 
GeneralRe: Datacache Pin
nitin_ion9-Oct-12 17:15
nitin_ion9-Oct-12 17:15 
GeneralRe: Datacache Pin
Pete O'Hanlon9-Oct-12 20:18
mvePete O'Hanlon9-Oct-12 20:18 
GeneralRe: Datacache Pin
Pete O'Hanlon9-Oct-12 22:01
mvePete O'Hanlon9-Oct-12 22:01 
nitin_ion wrote:
Also is caching good?

You can't say definitively whether caching is good or not. It really depends on what you are using it for. If you just dumped all of the records in a large table in it and then had to post process it after you retrieved it from the cache just to find a couple of records, then you shouldn't use the cache. If you are using it to hold static lookup data then it's a fine choice.

As I said in my first answer, as you control updates/inserts and deletes in your DAL, I would use that to decide whether or not the cache needs to be refreshed. Just spitballing here, but one way to do this would be to have a CacheManager class in which you listed all the tables that have been cached (this data is a perfect candidate for storing in a database and holding in a cache) - then to each of your inserts, etc, simply call a TriggerRefresh method on the CacheManager. Simplistically, all it would need to do is empty that particular cached entry and then let your application lazy load the data on the next hit.

*pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

"Mind bleach! Send me mind bleach!" - Nagy Vilmos


CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

GeneralRe: Datacache Pin
nitin_ion9-Oct-12 23:15
nitin_ion9-Oct-12 23:15 
GeneralRe: Datacache Pin
Pete O'Hanlon9-Oct-12 23:58
mvePete O'Hanlon9-Oct-12 23:58 
QuestionGenereate XML file from sql in C# Pin
Md. Rayhan Kabir8-Oct-12 18:17
Md. Rayhan Kabir8-Oct-12 18:17 
AnswerRe: Genereate XML file from sql in C# Pin
Sarath C8-Oct-12 22:42
Sarath C8-Oct-12 22:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.