Skip to content

Commit

Permalink
Remove self referential links from MemoryStore
Browse files Browse the repository at this point in the history
  • Loading branch information
skipkayhil committed Dec 31, 2023
1 parent 285ad7b commit 8ee4663
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions activesupport/lib/active_support/cache/memory_store.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ module Cache
# a cleanup will occur which tries to prune the cache down to three quarters
# of the maximum size by removing the least recently used entries.
#
# Unlike other Cache store implementations, MemoryStore does not compress
# values by default. MemoryStore does not benefit from compression as much
# Unlike other Cache store implementations, +MemoryStore+ does not compress
# values by default. +MemoryStore+ does not benefit from compression as much
# as other Store implementations, as it does not send data over a network.
# However, when compression is enabled, it still pays the full cost of
# compression in terms of cpu use.
#
# MemoryStore is thread-safe.
# +MemoryStore+ is thread-safe.
class MemoryStore < Store
module DupCoder # :nodoc:
extend self
Expand Down

0 comments on commit 8ee4663

Please sign in to comment.