アイテムの Sitecore キャッシュをプログラムでクリアしたいと考えています。以下のコードを実行しました。その後、削除された ID で web.GetItem を実行しようとしましたが、まだ null が返されます。助言がありますか?
Database db = new Database("web");
if (ID.IsID(id))
{
ID itemID = new ID(id);
//clear data cache
db.Caches.DataCache.RemoveItemInformation(itemID);
//clear item cache
db.Caches.ItemCache.RemoveItem(itemID);
//clear standard values cache
db.Caches.StandardValuesCache.RemoveKeysContaining(itemID.ToString());
//remove path cache
db.Caches.PathCache.RemoveKeysContaining(itemID.ToString());
}