Skip to content

Commit 9e27a70

Browse files
andyatkinsondjmb
authored andcommitted
Fix Markdown formatting
Add acronym expansion for LRU (least recently used), to match how FIFO is expanded earlier in the same sentence
1 parent 52bd211 commit 9e27a70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ or
189189
config.solid_cache.encrypt = true
190190
```
191191

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

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

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

261261
## Implementation
262262

263-
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.
263+
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.
264264

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

0 commit comments

Comments
 (0)