dalli 2.7.9 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of dalli might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01e74b52404cfe86c17ffe33b29fb1f417fb1083a599c888f7f3ad7ec6f6b7a7
4
- data.tar.gz: 625a2dfec7051e2a3807d21c0240bf9ad0a943fd9e22a898dacb29ad08ff8146
3
+ metadata.gz: 3e59130640d863e72dcd5d332f744319e6420066326732b7dff6a9ccfe66fd7b
4
+ data.tar.gz: 9ccd429326d6c4de6e8d8876619943206eb58cefdf78863e4e16e5fe6ebfa86b
5
5
  SHA512:
6
- metadata.gz: 0f3a1deb5cc3fe03b898824f368a69b3a8d25e532bb81b6b7822446db4682fe863a62fa7a68c6935279a33429bd66e84c008691da23a6e02bc3ad0660c1b6660
7
- data.tar.gz: 4ff78a2317aa690c44465a39b6559ab304724448ab4932dfb5832c759a3e8a9856c0aca72c6bc9306a2c5f9fffea6a0f2711e8add47e451aca09c5ffdf12ece4
6
+ metadata.gz: 432e07fbfa6c1d7b5bd10c8c1c665eb9e2455da2eaf71dcd7917dab04d2454fbb756f0a64d599e71a8547fd4215de105f090fe5a79e5f69b3802d441d4b49698
7
+ data.tar.gz: 7bf4a97dbc8ddbfd48aa2fdc82805438d665e335a6b43c50ae96ea55bc2a11b92cb6b65f203981f4c067b3dd67fdd5091a55df591b6e4b154bb4914950baa35a
data/Gemfile CHANGED
@@ -1,5 +1,10 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'kgio', :platform => :mri
5
+ group :test do
6
+ gem "minitest"
7
+ gem "rake"
8
+ gem "simplecov"
9
+ gem "ruby-prof", platform: :mri
10
+ end
data/History.md CHANGED
@@ -1,6 +1,56 @@
1
1
  Dalli Changelog
2
2
  =====================
3
3
 
4
+ 3.0.1
5
+ ==========
6
+
7
+ - Fix syntax error that prevented inclusion of Dalli::Server (ryanfb)
8
+ - Restore with method required by ActiveSupport::Cache::MemCacheStore
9
+
10
+ 3.0.0
11
+ ==========
12
+ - BREAKING CHANGES:
13
+
14
+ - Removes :dalli_store.
15
+ Use Rails' official :mem_cache_store instead.
16
+ https://guides.rubyonrails.org/caching_with_rails.html
17
+ - Attempting to store a larger value than allowed by memcached used to
18
+ print a warning and truncate the value. This now raises an error to
19
+ prevent silent data corruption.
20
+ - Compression now defaults to `true` for large values (greater than 4KB).
21
+ This is intended to minimize errors due to the previous note.
22
+ - Errors marshalling values now raise rather than just printing an error.
23
+ - The Rack session adapter has been refactored to remove support for thread-unsafe
24
+ configurations. You will need to include the `connection_pool` gem in
25
+ your Gemfile to ensure session operations are thread-safe.
26
+
27
+ - Raise NetworkError when multi response gets into corrupt state (mervync, #783)
28
+ - Validate servers argument (semaperepelitsa, petergoldstein, #776)
29
+ - Enable SSL support (bdunne, #775)
30
+ - Add gat operation (tbeauvais, #769)
31
+ - Removes inline native code, use Ruby 2.3+ support for bsearch instead. (mperham)
32
+ - Switch repo to Github Actions and upgrade Ruby versions (petergoldstein, bdunne, Fryguy)
33
+ - Update benchmark test for Rubyprof changes (nateberkopec)
34
+ - Remove support for the `kgio` gem, it is not relevant in Ruby 2.3+. (mperham)
35
+ - Remove inline native code, use Ruby 2.3+ support for bsearch instead. (mperham)
36
+
37
+
38
+ 2.7.11
39
+ ==========
40
+ - DEPRECATION: :dalli_store will be removed in Dalli 3.0.
41
+ Use Rails' official :mem_cache_store instead.
42
+ https://guides.rubyonrails.org/caching_with_rails.html
43
+ - Add new `digest_class` option to Dalli::Client [#724]
44
+ - Don't treat NameError as a network error [#728]
45
+ - Handle nested comma separated server strings (sambostock)
46
+
47
+ 2.7.10
48
+ ==========
49
+ - Revert frozen string change (schneems)
50
+ - Advertise supports_cached_versioning? in DalliStore (schneems)
51
+ - Better detection of fork support, to allow specs to run under Truffle Ruby (deepj)
52
+ - Update logging for over max size to log as error (aeroastro)
53
+
4
54
  2.7.9
5
55
  ==========
6
56
  - Fix behavior for Rails 5.2+ cache_versioning (GriwMF)
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- Dalli [![Build Status](https://secure.travis-ci.org/petergoldstein/dalli.svg)](http://travis-ci.org/petergoldstein/dalli) [![Dependency Status](https://gemnasium.com/petergoldstein/dalli.svg)](https://gemnasium.com/petergoldstein/dalli) [![Code Climate](https://codeclimate.com/github/petergoldstein/dalli.svg)](https://codeclimate.com/github/petergoldstein/dalli)
1
+ Dalli [![Tests](https://github.com/petergoldstein/dalli/actions/workflows/tests.yml/badge.svg)](https://github.com/petergoldstein/dalli/actions/workflows/tests.yml)
2
2
  =====
3
3
 
4
4
  Dalli is a high performance pure Ruby client for accessing memcached servers. It works with memcached 1.4+ only as it uses the newer binary protocol. It should be considered a replacement for the memcache-client gem.
@@ -9,26 +9,6 @@ The name is a variant of Salvador Dali for his famous painting [The Persistence
9
9
 
10
10
  Dalli's initial development was sponsored by [CouchBase](http://www.couchbase.com/). Many thanks to them!
11
11
 
12
-
13
- Design
14
- ------------
15
-
16
- Mike Perham decided to write Dalli after maintaining memcache-client for two years for a few specific reasons:
17
-
18
- 0. The code is mostly old and gross. The bulk of the code is a single 1000 line .rb file.
19
- 1. It has a lot of options that are infrequently used which complicate the codebase.
20
- 2. The implementation has no single point to attach monitoring hooks.
21
- 3. Uses the old text protocol, which hurts raw performance.
22
-
23
- So a few notes. Dalli:
24
-
25
- 0. uses the exact same algorithm to choose a server so existing memcached clusters with TBs of data will work identically to memcache-client.
26
- 1. is approximately 20% faster than memcache-client (which itself was heavily optimized) in Ruby 1.9.2.
27
- 2. contains explicit "chokepoint" methods which handle all requests; these can be hooked into by monitoring tools (NewRelic, Rack::Bug, etc) to track memcached usage.
28
- 3. supports SASL for use in managed environments, e.g. Heroku.
29
- 4. provides proper failover with recovery and adjustable timeouts
30
-
31
-
32
12
  Supported Ruby versions and implementations
33
13
  ------------------------------------------------
34
14
 
@@ -66,86 +46,23 @@ dc.set('abc', 123)
66
46
  value = dc.get('abc')
67
47
  ```
68
48
 
69
- The test suite requires memcached 1.4.3+ with SASL enabled (`brew install memcached --enable-sasl ; mv /usr/bin/memcached /usr/bin/memcached.old`). Currently only supports the PLAIN mechanism.
70
-
71
- Dalli has no runtime dependencies and never will. If you are using Ruby <2.3,
72
- you can optionally install the '[kgio](https://bogomips.org/kgio/)' gem to
73
- give Dalli a 20-30% performance boost.
74
-
75
-
76
- Usage with Rails 3.x and 4.x
77
- ---------------------------
78
-
79
- In your Gemfile:
80
-
81
- ```ruby
82
- gem 'dalli'
83
- ```
84
-
85
- In `config/environments/production.rb`:
86
-
87
- ```ruby
88
- config.cache_store = :dalli_store
89
- ```
90
-
91
- Here's a more comprehensive example that sets a reasonable default for maximum cache entry lifetime (one day), enables compression for large values and namespaces all entries for this rails app. Remove the namespace if you have multiple apps which share cached values.
92
-
93
- ```ruby
94
- config.cache_store = :dalli_store, 'cache-1.example.com', 'cache-2.example.com:11211:2',
95
- { :namespace => NAME_OF_RAILS_APP, :expires_in => 1.day, :compress => true }
96
- ```
97
-
98
- You can specify a port and a weight by appending to the server name. You may wish to increase the weight of a server with more memory configured. (e.g. to specify port 11211 and a weight of 2, append `:11211:2` )
99
-
100
- If your servers are specified in `ENV["MEMCACHE_SERVERS"]` (e.g. on Heroku when using a third-party hosted addon), simply provide `nil` for the servers:
101
-
102
- ```ruby
103
- config.cache_store = :dalli_store, nil, { :namespace => NAME_OF_RAILS_APP, :expires_in => 1.day, :compress => true }
104
- ```
105
-
106
- To use Dalli for Rails session storage that times out after 20 minutes, in `config/initializers/session_store.rb`:
107
-
108
- For Rails >= 3.2.4:
109
-
110
- ```ruby
111
- Rails.application.config.session_store ActionDispatch::Session::CacheStore, :expire_after => 20.minutes
112
- ```
113
-
114
- For Rails 3.x:
115
-
116
- ```ruby
117
- require 'action_dispatch/middleware/session/dalli_store'
118
- Rails.application.config.session_store :dalli_store, :memcache_server => ['host1', 'host2'], :namespace => 'sessions', :key => '_foundation_session', :expire_after => 20.minutes
119
- ```
120
-
121
- Dalli does not support Rails 2.x.
122
-
123
-
124
- Multithreading and Rails
125
- --------------------------
126
-
127
- If you use Puma or another threaded app server, as of Dalli 2.7, you can use a pool
128
- of Dalli clients with Rails to ensure the `Rails.cache` singleton does not become a
129
- source of thread contention. You must add `gem 'connection_pool'` to your Gemfile and
130
- add :pool\_size to your `dalli_store` config:
131
-
49
+ With SSL enabled:
132
50
  ```ruby
133
- config.cache_store = :dalli_store, 'cache-1.example.com', { :pool_size => 5 }
51
+ require 'dalli'
52
+ ssl_context = OpenSSL::SSL::SSLContext.new
53
+ ssl_context.ca_file = "./myCA.pem"
54
+ ssl_context.ssl_version = :SSLv23
55
+ ssl_context.verify_hostname = true
56
+ ssl_context.verify_mode = OpenSSL::SSL::VERIFY_PEER
57
+
58
+ dc = Dalli::Client.new("memcached:11212", :ssl_context => ssl_context)
59
+ dc.set("abc", 123)
60
+ value = dc.get("abc")
134
61
  ```
135
62
 
136
- You can then use the Rails cache as normal and Rails.cache will use the pool transparently under the covers, or you can check out a Dalli client directly from the pool:
137
-
138
- ```ruby
139
- Rails.cache.fetch('foo', :expires_in => 300) do
140
- 'bar'
141
- end
142
-
143
- Rails.cache.dalli.with do |client|
144
- # client is a Dalli::Client instance which you can
145
- # use ONLY within this block
146
- end
147
- ```
63
+ The test suite requires memcached 1.4.3+ with SASL enabled (`brew install memcached --enable-sasl ; mv /usr/bin/memcached /usr/bin/memcached.old`). Currently only supports the PLAIN mechanism.
148
64
 
65
+ Dalli has no runtime dependencies.
149
66
 
150
67
  Configuration
151
68
  ------------------------
@@ -160,7 +77,7 @@ Dalli::Client accepts the following options. All times are in seconds.
160
77
 
161
78
  **failover**: Boolean, if true Dalli will failover to another server if the main server for a key is down. Default is true.
162
79
 
163
- **threadsafe**: Boolean. If true Dalli ensures that only one thread is using a socket at a given time. Default is true. Set to false at your own peril.
80
+ **threadsafe**: Boolean. If true Dalli ensures that only one thread is using a socket at a given time. Default is true. You can set to false if you are using the Client within a thread-safe connection pool.
164
81
 
165
82
  **serializer**: The serializer to use for objects being stored (ex. JSON).
166
83
  Default is Marshal.
@@ -177,13 +94,13 @@ If serving compressed data using nginx's HttpMemcachedModule, set `memcached_gzi
177
94
 
178
95
  **keepalive**: Boolean. If true, Dalli will enable keep-alive for socket connections. Default is true.
179
96
 
180
- **socket_timeout**: Timeout for all socket operations (connect, read, write). Default is 0.5.
97
+ **socket_timeout**: Timeout for all socket operations (connect, read, write). Default is 1.
181
98
 
182
99
  **socket_max_failures**: When a socket operation fails after socket_timeout, the same operation is retried. This is to not immediately mark a server down when there's a very slight network problem. Default is 2.
183
100
 
184
- **socket_failure_delay**: Before retrying a socket operation, the process sleeps for this amount of time. Default is 0.01. Set to nil for no delay.
101
+ **socket_failure_delay**: Before retrying a socket operation, the process sleeps for this amount of time. Default is 0.1. Set to nil for no delay.
185
102
 
186
- **down_retry_delay**: When a server has been marked down due to many failures, the server will be checked again for being alive only after this amount of time. Don't set this value too low, otherwise each request which tries the failed server might hang for the maximum **socket_timeout**. Default is 60 seconds.
103
+ **down_retry_delay**: When a server has been marked down due to many failures, the server will be checked again for being alive only after this amount of time. Don't set this value too low, otherwise each request which tries the failed server might hang for the maximum **socket_timeout**. Default is 30 seconds.
187
104
 
188
105
  **value_max_bytes**: The maximum size of a value in memcached. Defaults to 1MB, this can be increased with memcached's -I parameter. You must also configure Dalli to allow the larger size here.
189
106
 
@@ -206,7 +123,7 @@ If serving compressed data using nginx's HttpMemcachedModule, set `memcached_gzi
206
123
  Features and Changes
207
124
  ------------------------
208
125
 
209
- By default, Dalli is thread-safe. Disable thread-safety at your own peril.
126
+ By default, Dalli is thread-safe. Disable thread-safety at your own peril.
210
127
 
211
128
  Dalli does not need anything special in Unicorn/Passenger since 2.0.4.
212
129
  It will detect sockets shared with child processes and gracefully reopen the
@@ -1,59 +1 @@
1
- # frozen_string_literal: true
2
- require 'dalli/client'
3
-
4
- module Dalli
5
- class Client
6
- ##
7
- # Get the value and CAS ID associated with the key. If a block is provided,
8
- # value and CAS will be passed to the block.
9
- def get_cas(key)
10
- (value, cas) = perform(:cas, key)
11
- value = (!value || value == 'Not found') ? nil : value
12
- if block_given?
13
- yield value, cas
14
- else
15
- [value, cas]
16
- end
17
- end
18
-
19
- ##
20
- # Fetch multiple keys efficiently, including available metadata such as CAS.
21
- # If a block is given, yields key/data pairs one a time. Data is an array:
22
- # [value, cas_id]
23
- # If no block is given, returns a hash of
24
- # { 'key' => [value, cas_id] }
25
- def get_multi_cas(*keys)
26
- if block_given?
27
- get_multi_yielder(keys) {|*args| yield(*args)}
28
- else
29
- Hash.new.tap do |hash|
30
- get_multi_yielder(keys) {|k, data| hash[k] = data}
31
- end
32
- end
33
- end
34
-
35
- ##
36
- # Set the key-value pair, verifying existing CAS.
37
- # Returns the resulting CAS value if succeeded, and falsy otherwise.
38
- def set_cas(key, value, cas, ttl=nil, options=nil)
39
- ttl ||= @options[:expires_in].to_i
40
- perform(:set, key, value, ttl, cas, options)
41
- end
42
-
43
- ##
44
- # Conditionally add a key/value pair, verifying existing CAS, only if the
45
- # key already exists on the server. Returns the new CAS value if the
46
- # operation succeeded, or falsy otherwise.
47
- def replace_cas(key, value, cas, ttl=nil, options=nil)
48
- ttl ||= @options[:expires_in].to_i
49
- perform(:replace, key, value, ttl, cas, options)
50
- end
51
-
52
- # Delete a key/value pair, verifying existing CAS.
53
- # Returns true if succeeded, and falsy otherwise.
54
- def delete_cas(key, cas=0)
55
- perform(:delete, key, cas)
56
- end
57
-
58
- end
59
- end
1
+ puts "You can remove `require 'dalli/cas/client'` as this code has been rolled into the standard 'dalli/client'."