aboutsummaryrefslogtreecommitdiff
path: root/lib/VNLib.Data.Caching.ObjectCache/src/IPersistantCacheStore.cs
blob: 3824735f087519c5ad0bbc17f2d6c57fc8e3a331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
* Copyright (c) 2024 Vaughn Nugent
* 
* Library: VNLib
* Package: VNLib.Data.Caching.ObjectCache
* File: IPersistantCacheStore.cs 
*
* IPersistantCacheStore.cs is part of VNLib.Data.Caching.ObjectCache which 
* is part of the larger VNLib collection of libraries and utilities.
*
* VNLib.Data.Caching.ObjectCache is free software: you can redistribute it and/or modify 
* it under the terms of the GNU Affero General Public License as 
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* VNLib.Data.Caching.ObjectCache is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see https://www.gnu.org/licenses/.
*/

using System;

namespace VNLib.Data.Caching.ObjectCache
{
    /// <summary>
    /// Provides a persitance layer to memory caching.
    /// </summary>
    public interface IPersistantCacheStore : IDisposable
    {
        /// <summary>
        /// Invoked when an entry has been evicted from main-memory cache
        /// and is expected to be stored in a "persistant" storage solution.
        /// <para>
        /// When this method returns, the <paramref name="entry"/> is no longer valid.
        /// </para>
        /// <para>
        /// This method is called while the bucket lock is held. This call is maded
        /// during an <see cref="IBlobCache.Add(string, CacheEntry)"/> method call.
        /// </para>
        /// </summary>
        /// <param name="bucketId">The id of the bucket requesting the operation</param>
        /// <param name="key">The key identifying the the entry</param>
        /// <param name="entry">The entry containing the object data to store</param>
        void OnEntryEvicted(uint bucketId, string key, in CacheEntry entry);

        /// <summary>
        /// Called when a cache item does not exist in main memory cache and should
        /// be promoted from persistant cache to main memory cache.
        /// <para>
        /// This method is called while the bucket lock is held. This call is maded
        /// during an <see cref="IBlobCache.Add(string, CacheEntry)"/> method call.
        /// </para>
        /// </summary>
        /// <param name="key">The key identifying the entry to promot</param>
        /// <param name="memManager">The cache table memory manager</param>
        /// <param name="bucketId">The id of the bucket requesting the operation</param>
        /// <param name="entry">The newly created entry when data is found</param>
        /// <returns>
        /// A value inidcating if the entry was successfully recovered from the persistant storage and 
        /// was successfully promoted.
        /// </returns>
        bool OnCacheMiss(uint bucketId, string key, ICacheEntryMemoryManager memManager, out CacheEntry entry);

        /// <summary>
        /// Removes an entry from the backing store
        /// </summary>
        /// <param name="key">The key identifying the entry to remove</param>
        /// <param name="bucketId">The id of the bucket requesting the operation</param>
        void OnEntryDeleted(uint bucketId, string key);
    }
}