PersistedCache.PostgreSql
1.0.3
See the version list below for details.
dotnet add package PersistedCache.PostgreSql --version 1.0.3
NuGet\Install-Package PersistedCache.PostgreSql -Version 1.0.3
<PackageReference Include="PersistedCache.PostgreSql" Version="1.0.3" />
paket add PersistedCache.PostgreSql --version 1.0.3
#r "nuget: PersistedCache.PostgreSql, 1.0.3"
// Install PersistedCache.PostgreSql as a Cake Addin #addin nuget:?package=PersistedCache.PostgreSql&version=1.0.3 // Install PersistedCache.PostgreSql as a Cake Tool #tool nuget:?package=PersistedCache.PostgreSql&version=1.0.3
Persisted Cache
Persisted Cache is a simple caching library that allows you to turn any stateful resource into a key-value store. It is designed to be simple and easy to use, meanwhile it spares you the hassle and costs of managing a separate cache server.
Why would you use this?
- Your team doesn't want to manage a separate cache server.
- You need a distributed cache that can be shared across multiple instances of your application.
- You need a cache that can be persisted to disk.
- You need a cache that can be shared across multiple applications.
How to use it?
Install the specific package for the resource you want to use. For example, if you want to use MySQL as the cache store, you would install the PersistedCache.MySql
package. (Installing the base package is not necessary)
dotnet add package PersistedCache.MySql
Or simply add it from the NuGet package gallery.
Currently supported resources are:
-
MySQL
- PersistedCache.MySql -
PostgreSQL
- PersistedCache.PostgreSql -
SQL Server
- PersistedCache.SqlServer -
File System
- PersistedCache.FileSystem -
SQLite
- PersistedCache.Sqlite -
MongoDB
- PersistedCache.MongoDb
The reason that the version does not match is due to semantic versioning. The base package is versioned independently of the resource packages. All packages are on the latest version, regardless of the version number.
Add the service to your DI container
services.AddMySqlPersistedCache("Your connection string here", options =>
{
// The name of the table to use for the cache
options.TableName = "persisted_cache";
// Can be set to false after the table is created (or if you want to manage the table yourself)
options.CreateTableIfNotExists = true;
// Purges expired entries based on configured expiry interval
options.PurgeExpiredEntries = true;
// The interval at which the cache purges expired entries
options.PurgeInterval = TimeSpan.FromHours(24);
// If you need to serialize/deserialize objects differently
options.JsonOptions = new JsonSerializerOptions()
});
All the options shown above are optional and have default values, only the connection string is required.
Use the cache
public class MyService(IPersistedCache cache)
{
// Set a value in the cache
public void SetSomething()
{
cache.Set("my-key", "some value", Expire.InMinutes(5));
}
// Get a value from the cache
public string? GetSomething()
{
return cache.Get<string>("my-key");
}
// Get a value from the cache or set it if it doesn't exist
public void GetOrSetSomething()
{
var value = cache.GetOrSet("my-key", () => new RandomObject(), Expire.InMinutes(5));
}
// Check if a value exists in the cache
public bool HasSomething()
{
return cache.Has("my-key");
}
// Forget a value from the cache
public void ForgetSomething()
{
cache.Forget("my-key");
}
// Flush values matching a pattern from the cache
public void FlushPattern()
{
cache.Flush("my-*");
}
// Flush all values from the cache
public void FlushAll()
{
cache.Flush();
}
// Get a value from the cache and remove it
public RandomObject? PullSomething()
{
return cache.Pull<RandomObject>("my-key");
}
// Purge the cache of expired entries
public void PurgeCache()
{
cache.Purge();
}
// Set a value in the cache asynchronously
public async Task SetSomethingAsync()
{
await cache.SetAsync("my-async-key", new RandomObject(), Expire.Never);
}
// Get a value from the cache asynchronously
public async Task<RandomObject?> GetSomethingAsync()
{
return await cache.GetAsync<RandomObject>("my-async-key");
}
// Get a value from the cache or set it if it doesn't exist asynchronously
public async Task<RandomObject?> GetOrSetSomethingAsync()
{
return await cache.GetOrSetAsync("my-async-key", async () => await GetRandomObjectAsync(), Expire.InSeconds(5));
}
}
Be aware when using value types, as the cache will return the default value if the key does not exist instead of null, unless you use a nullable value in the generic type.
Use more than one persisted cache
If you need to use more than one Persisted Cache, you can use the driver based injection.
services.AddMySqlPersistedCache("Your connection string here");
services.AddFileSystemPersistedCache("Your path here");
Then you can inject the cache you need in your service.
public class MyService(
IPersistedCache<MySqlDriver> mySqlCache,
IPersistedCache<FileSystemDriver> fileSystemCache
) {
public void SetSomething()
{
mySqlCache.Set("my-key", "some value", Expire.InMinutes(5));
fileSystemCache.Set("my-key", "some value", Expire.InMinutes(5));
}
}
The first cache registered will be the default cache, so you can use the IPersistedCache
interface without specifying the driver.
Methods
Method | Description |
---|---|
Set<T>(string key, T value, Expire expiry) |
Set a value in the cache with an expiry time |
SetAsync<T>(string key, T value, Expire expiry, CancellationToken cancellationToken = default) |
Set a value in the cache with an expiry time asynchronously |
Get<T>(string key) |
Get a value from the cache |
GetAsync<T>(string key, CancellationToken cancellationToken = default) |
Get a value from the cache asynchronously |
GetOrSet<T>(string key, Func<T> valueFactory, Expire expiry) |
Get a value from the cache or set it if it doesn't exist |
GetOrSetAsync<T>(string key, Func<T> valueFactory, Expire expiry, CancellationToken cancellationToken = default) |
Get a value from the cache or set it if it doesn't exist asynchronously |
GetOrSetAsync<T>(string key, Func<Task<T>> valueFactory, Expire expiry, CancellationToken cancellationToken = default) |
Get a value from the cache or set it if it doesn't exist asynchronously |
Has(string key) |
Check if a value exists in the cache |
HasAsync(string key, CancellationToken cancellationToken = default) |
Check if a value exists in the cache asynchronously |
Forget(string key) |
Forget a value from the cache |
ForgetAsync(string key, CancellationToken cancellationToken = default) |
Forget a value from the cache asynchronously |
Pull<T>(string key) |
Get a value from the cache and remove it |
PullAsync<T>(string key, CancellationToken cancellationToken = default) |
Get a value from the cache and remove it asynchronously |
Flush() |
Flush all values from the cache |
FlushAsync(CancellationToken cancellationToken = default) |
Flush all values from the cache asynchronously |
Flush(string pattern) |
Flush values from the cache by pattern |
FlushAsync(string pattern, CancellationToken cancellationToken = default) |
Flush values from the cache by pattern asynchronously |
Purge() |
Purge the cache of expired entries |
Want to contribute?
If you want to contribute to this project, please feel free to open an issue or a pull request.
Want to make your own adapter? Add the PersistedCache
package to your project and implement the IPersistedCache
interface.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Npgsql (>= 6.0.11)
- PersistedCache (>= 1.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.0 | 85 | 9/21/2024 |
2.0.0 | 77 | 9/21/2024 |
1.0.3 | 86 | 9/21/2024 |
1.0.2 | 80 | 9/2/2024 |
1.0.1 | 123 | 8/21/2024 |
1.0.0 | 109 | 8/21/2024 |
0.1.1 | 105 | 8/21/2024 |
0.1.0 | 120 | 8/21/2024 |
0.0.6 | 117 | 8/21/2024 |
0.0.5 | 95 | 8/20/2024 |
0.0.4 | 101 | 8/19/2024 |
0.0.3 | 117 | 8/18/2024 |
0.0.2 | 102 | 8/16/2024 |
0.0.1 | 116 | 8/15/2024 |