FusionCache VS SqliteCache for ASP.NET Core

Compare FusionCache vs SqliteCache for ASP.NET Core and see what are their differences.

FusionCache

FusionCache is an easy to use, fast and robust cache with advanced resiliency features and an optional distributed 2nd level. (by ZiggyCreatures)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
FusionCache SqliteCache for ASP.NET Core
9 2
1,285 70
13.8% -
8.8 6.5
3 days ago about 2 months ago
C# C#
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

FusionCache

Posts with mentions or reviews of FusionCache. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-07.

SqliteCache for ASP.NET Core

Posts with mentions or reviews of SqliteCache for ASP.NET Core. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-25.
  • Storing query results
    3 projects | /r/dotnet | 25 Jun 2023
    For pure key-value storage .net has IDistributedCache abstraction, with SQLite implementation. (This has no dependencies on asp.net core and can be used in any .net app)
  • In pursuit of the best value US cloud provider
    2 projects | news.ycombinator.com | 23 Apr 2023
    This has been posted and reposted continuously for a year and I still don’t understand the comparisons in the article. Either use SQLite across the board or use MySQL/Postgres across the board. Or do both. You can even model a self-managed rdbms install on the clouds that don’t have that turnkey offering. But mixing and matching makes no sense.

    I’m a huge fan of SQLite and have open sourced some .NET stuff around it (eg https://github.com/neosmart/AspSqliteCache ) but learned a very expensive mistake in using it for an ASP.NET Core Project with the default pattern (i.e. with EF Core).

    SQLite locks (tables or the entire db depending on configuration) upon write. If you use shared cache mode and WAL you can get very far with one write thread and many competing reads - depending on shared cache mode, WAL, and other options. I benchmarked the different configurations with one or more writing threads here to show how it scales: https://github.com/mqudsi/sqlite-readers-writers

    But this approach is hard to model with EF Core. If you use the default request-scoped DI injected connection, you risk any writes upgrading the read lock to a write lock for the duration of the request. The better approach is to use the default request-scoped connection for RO operations and then request a scoped/transient DI connection for any write ops, but copying internal EF entity tracking state from one EF instance to another is tedious and fraught with issues. You’re at least able to work around this if you try to always keep in mind write transaction lifetimes, though.

    The problem comes as soon as you need a “background service” in the sense of “an operation running independently of requests and parallel to them.” If that service needs a write lock for any amount of time, you’re suddenly going to be seeing write timeouts (since default behavior is to poll repeatedly until a write lock is obtained) and that is pretty much impossible to fix.

    As one of the biggest advantages of using a resident executor like .NET or Java vs a per-request stateless option like PHP is that you can do stuff independent of requests, SQLite is tricky to use correctly in prod in this model.

    The good news is that if you use the SQLite EF provider and run into this, it’s usually not too hard to switch to a real DB provider as a lot of the work is abstracted.

What are some alternatives?

When comparing FusionCache and SqliteCache for ASP.NET Core you can also consider the following projects:

Lazy Cache - An easy to use thread safe in-memory caching service with a simple developer friendly API for c#

Cache Tower - An efficient multi-layered caching system for .NET

Akavache - An asynchronous, persistent key-value store created for writing desktop and mobile applications, based on SQLite3. Akavache is great for both storing important data as well as cached local data that expires.

EasyCaching - :boom: EasyCaching is an open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!

CacheManager - CacheManager is an open source caching abstraction layer for .NET written in C#. It supports various cache providers and implements many advanced features.

NCache - NCache: Highly Scalable In-Memory Distributed Cache for .NET

SharpRepository - C# Generic Repository for use with Entity Framework, RavenDB and more with built-in caching options.

CacheCow - An implementation of HTTP Caching in .NET Core and 4.5.2+ for both the client and the server

Fine Code Coverage - Visualize unit test code coverage easily for free in Visual Studio Community Edition (and other editions too)