Skip to content

Commit

Permalink
Fix Markdown formatting
Browse files Browse the repository at this point in the history
Add acronym expansion for LRU (least recently used), to match how FIFO is expanded earlier in
the same sentence
  • Loading branch information
andyatkinson authored and djmb committed Sep 27, 2024
1 parent 52bd211 commit 9e27a70
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 9e27a70

Please sign in to comment.