Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/filippoliverani/rails-fast-cache

Drop-in improvement for Rails cache, providing enhanced performance with asynchronous processing and better default serialization and compression
https://github.com/filippoliverani/rails-fast-cache

cache performance rails ruby

Last synced: 2 months ago
JSON representation

Drop-in improvement for Rails cache, providing enhanced performance with asynchronous processing and better default serialization and compression

Awesome Lists containing this project

README

        

# Rails Fast Cache

This gem provides a wrapper around Rails cache store that improves performance by:
- using Brotli as default compressor instead of GZip
- using MessagePack as default serializer instead of Marshal
- delegating cache writes to a thread pool instead of running them synchronously

## Requirements
- Rails 7.1+
- You need to provide appropriate MessagePack serializers to cache custom classes

## Installation

`Gemfile`

```ruby
gem 'rails-fast-cache'
```

## Configuration

Rail Fast Cache implements ActionsSupport::Cache::Store API and can be
instantiated by passing the same parameters you would pass to Rails'
`config.cache_store` configuration option.

```ruby
class Application < Rails::Application
...
config.cache_store = RailsFastCache::Store.new(:memory_store, { size: 64.megabytes })
```