From 9e27a703d478b776b69d192670ce8fc208ed7677 Mon Sep 17 00:00:00 2001 From: Andy Atkinson Date: Wed, 18 Sep 2024 16:55:55 -0500 Subject: [PATCH] Fix Markdown formatting Add acronym expansion for LRU (least recently used), to match how FIFO is expanded earlier in the same sentence --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 472fedd..b5be8c1 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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.