Ya, dalam kode caching Anda, Anda ingin memasukkan kode pengakses database di dalam lock
memblokir. Namun, jangan kunci this
. Biasanya Anda akan melakukan sesuatu seperti
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
}
}
}