lib/wovnrb/text_caches/memory_cache.rb in wovnrb-0.2.20 vs lib/wovnrb/text_caches/memory_cache.rb in wovnrb-0.2.21
- old
+ new
@@ -1,7 +1,6 @@
require 'active_support/cache'
-require 'active_support/cache/memory_store'
require 'lz4-ruby'
module Wovnrb
class MemoryCache < CacheBase
@@default_memory_cache_config = {
@@ -47,6 +46,6 @@
def decompress(value)
LZ4::decompress(value, value.bytesize, 'UTF-8')
end
end
-end
\ No newline at end of file
+end