Skip to main content

All Questions

2 votes
1 answer
1k views

Simple, flexible, and thread-safe key/value memory cache

MemoryCache.cs ...
Shelby115's user avatar
  • 1,961
3 votes
2 answers
4k views

Windows Forms `ControlCollection` implementation

I've implemented my own version of the Control.ControlCollection class in System.Windows.Forms and obviously I want it reviewed. ...
Der Kommissar's user avatar
4 votes
3 answers
630 views

Thread safe cache for write through and writeback

This cache is like a list where new elements are inserted in the middle, cache hits are put to head of the list and replaced elements are taken from the end. Would I just use a list the lookup would ...
aggsol's user avatar
  • 404