From 456ead9bc8b0f61357bae93152ad0403c4940101 Mon Sep 17 00:00:00 2001 From: vnugent Date: Tue, 13 Feb 2024 14:46:35 -0500 Subject: fix: #1 shared cluster index on linux & latested core updates --- .../src/IMemoryCacheEntryFactory.cs | 43 ---------------------- 1 file changed, 43 deletions(-) delete mode 100644 lib/VNLib.Data.Caching.ObjectCache/src/IMemoryCacheEntryFactory.cs (limited to 'lib/VNLib.Data.Caching.ObjectCache/src/IMemoryCacheEntryFactory.cs') diff --git a/lib/VNLib.Data.Caching.ObjectCache/src/IMemoryCacheEntryFactory.cs b/lib/VNLib.Data.Caching.ObjectCache/src/IMemoryCacheEntryFactory.cs deleted file mode 100644 index 1454fc0..0000000 --- a/lib/VNLib.Data.Caching.ObjectCache/src/IMemoryCacheEntryFactory.cs +++ /dev/null @@ -1,43 +0,0 @@ -/* -* Copyright (c) 2023 Vaughn Nugent -* -* Library: VNLib -* Package: VNLib.Data.Caching.ObjectCache -* File: IMemoryCacheEntryFactory.cs -* -* IMemoryCacheEntryFactory.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 -{ - /// - /// A factory abstraction that builds structures - /// linked to internally configured memory implementations, for cache - /// promotions. - /// - public interface IMemoryCacheEntryFactory - { - /// - /// Creates and initalizes a new from the desired object data - /// - /// The non-owned memory to copy into the the new - /// The newly initalized - CacheEntry CreateEntry(ReadOnlySpan entryData); - } -} -- cgit