Remove self referential links from MemoryStore

This commit is contained in:
Hartley McGuire 2023-12-30 23:05:34 -05:00
parent 285ad7bf36
commit 8ee46636b7
No known key found for this signature in database
GPG Key ID: E823FC1403858A82

@ -18,13 +18,13 @@ module Cache
# a cleanup will occur which tries to prune the cache down to three quarters # 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. # of the maximum size by removing the least recently used entries.
# #
# Unlike other Cache store implementations, MemoryStore does not compress # Unlike other Cache store implementations, +MemoryStore+ does not compress
# values by default. MemoryStore does not benefit from compression as much # values by default. +MemoryStore+ does not benefit from compression as much
# as other Store implementations, as it does not send data over a network. # 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 # However, when compression is enabled, it still pays the full cost of
# compression in terms of cpu use. # compression in terms of cpu use.
# #
# MemoryStore is thread-safe. # +MemoryStore+ is thread-safe.
class MemoryStore < Store class MemoryStore < Store
module DupCoder # :nodoc: module DupCoder # :nodoc:
extend self extend self