Tak, w kodzie buforowania będziesz chciał umieścić swój kod dostępu do bazy danych w lock
blok. Nie blokuj jednak this
. Zazwyczaj robisz coś takiego jak
private static readonly object staticObjectToLockOn = new object();
...
if (cache[cacheKey] == null)
{
lock(staticObjectToLockOn)
{
// double-check the cache is still null inside the lock
if (cache[cacheKey] == null)
{
// get data from the database, add to cache
}
}
}