/* * Copyright (c) 2024 Vaughn Nugent * * Library: VNLib * Package: ObjectCacheServer * File: CacheConstants.cs * * CacheConstants.cs is part of ObjectCacheServer which is * part of the larger VNLib collection of libraries and utilities. * * ObjectCacheServer 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. * * ObjectCacheServer 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.Server { internal static class CacheConstants { /// /// The default path for the VNCache well known endpoint (aka discovery endpoint) /// public const string DefaultWellKnownPath = "/.well-known/vncache"; /// /// The maximum size of buffers for FBM messages sent between servers. /// public const int MaxSyncMessageSize = 12 * 1024; /// /// The maximum size of the change queue for the cache listener /// public const int CacheListenerChangeQueueSize = 10000; /// /// The time a client authorization token is valid for /// public static readonly TimeSpan ClientAuthTokenExpiration = TimeSpan.FromSeconds(30); public static class LogScopes { /// /// The log scope for the cache listener /// public const string BlobCacheListener = "CacheListener"; /// /// The peer discovery log scope /// public const string PeerDiscovery = "DISC"; /// /// The log scope for the replication FBM client debug log (if debugging is enabled) /// public const string ReplicationFbmDebug = "REPL-CLNT"; /// /// The log scope for cache replication events /// public const string RepliactionManager = "REPL-MGR"; /// /// The log scope for the cache listener change event queue /// public const string CacheListenerPubQueue = "QUEUE"; /// /// The log scope for the cache connection websocket endpoint /// public const string ConnectionEndpoint = "CONEP"; } public static class Delays { /// /// The amount of startup delay before starting an initial peer discovery /// public static readonly TimeSpan InitialDiscovery = TimeSpan.FromSeconds(15); /// /// The amount of time to wait before retrying a failed resolve /// of a well-known peers /// public static readonly TimeSpan WellKnownResolveFailed = TimeSpan.FromSeconds(20); /// /// The amount of time to wait when getting the value of a changed item from the cache /// /// /// When an item change was detected from another peer, the cache will wait this /// amount of time to get the new value from the cache before timing out. /// public static readonly TimeSpan CacheSyncGetItemTimeout = TimeSpan.FromSeconds(10); } } }