Ano, v kódu mezipaměti budete chtít vložit kód pro přístup k databázi do lock
blok. Nezamykejte však this
. Typicky byste udělali něco jako
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
}
}
}