Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ or
config.solid_cache.encrypt = true
```

You will need to set up your application to (use Active Record Encryption)[https://guides.rubyonrails.org/active_record_encryption.html].
You will need to set up your application to [use Active Record Encryption](https://guides.rubyonrails.org/active_record_encryption.html).

Solid Cache by default uses a custom encryptor and message serializer that are optimised for it.

Expand Down Expand Up @@ -260,7 +260,7 @@ This ensures that all the Rails versions dependencies are updated.

## Implementation

Solid Cache is a FIFO (first in, first out) cache. While this is not as efficient as an LRU cache, it is mitigated by the longer cache lifespan.
Solid Cache is a FIFO (first in, first out) cache. While this is not as efficient as an LRU (least recently used) cache, it is mitigated by the longer cache lifespan.

A FIFO cache is much easier to manage:
1. We don't need to track when items are read.
Expand Down