Ja, i din cachingkod vill du placera din databasåtkomstkod i ett lock
blockera. Lås dock inte på this
. Vanligtvis skulle du göra något liknande
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
}
}
}