dalli 2.7.8 → 3.2.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.

Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +12 -1
  3. data/History.md +151 -0
  4. data/README.md +27 -223
  5. data/lib/dalli/cas/client.rb +1 -57
  6. data/lib/dalli/client.rb +227 -254
  7. data/lib/dalli/compressor.rb +12 -2
  8. data/lib/dalli/key_manager.rb +113 -0
  9. data/lib/dalli/options.rb +6 -7
  10. data/lib/dalli/pipelined_getter.rb +177 -0
  11. data/lib/dalli/protocol/base.rb +241 -0
  12. data/lib/dalli/protocol/binary/request_formatter.rb +117 -0
  13. data/lib/dalli/protocol/binary/response_header.rb +36 -0
  14. data/lib/dalli/protocol/binary/response_processor.rb +239 -0
  15. data/lib/dalli/protocol/binary/sasl_authentication.rb +60 -0
  16. data/lib/dalli/protocol/binary.rb +173 -0
  17. data/lib/dalli/protocol/connection_manager.rb +252 -0
  18. data/lib/dalli/protocol/meta/key_regularizer.rb +31 -0
  19. data/lib/dalli/protocol/meta/request_formatter.rb +108 -0
  20. data/lib/dalli/protocol/meta/response_processor.rb +211 -0
  21. data/lib/dalli/protocol/meta.rb +177 -0
  22. data/lib/dalli/protocol/response_buffer.rb +54 -0
  23. data/lib/dalli/protocol/server_config_parser.rb +84 -0
  24. data/lib/dalli/protocol/ttl_sanitizer.rb +45 -0
  25. data/lib/dalli/protocol/value_compressor.rb +85 -0
  26. data/lib/dalli/protocol/value_marshaller.rb +59 -0
  27. data/lib/dalli/protocol/value_serializer.rb +91 -0
  28. data/lib/dalli/protocol.rb +8 -0
  29. data/lib/dalli/ring.rb +94 -83
  30. data/lib/dalli/server.rb +3 -746
  31. data/lib/dalli/servers_arg_normalizer.rb +54 -0
  32. data/lib/dalli/socket.rb +117 -137
  33. data/lib/dalli/version.rb +4 -1
  34. data/lib/dalli.rb +43 -15
  35. data/lib/rack/session/dalli.rb +95 -95
  36. metadata +43 -48
  37. data/lib/action_dispatch/middleware/session/dalli_store.rb +0 -82
  38. data/lib/active_support/cache/dalli_store.rb +0 -429
  39. data/lib/dalli/railtie.rb +0 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c031a1c9cb46cdd1c12b7f52d123de5edd393c8061353cb7842b3106b97d13f
4
- data.tar.gz: 43a26b17146ebb001fb073df967c5f77c04660f3f71d791c3bf67d05b9a10425
3
+ metadata.gz: f81141d870bf96f502734833c9e63678c4f034a2e5cdb6a28bf1fe54b5a6f8f2
4
+ data.tar.gz: abbb39311cd429b8546397b1c5ba0555024f104e49a6b23fd97b3386408cb5e6
5
5
  SHA512:
6
- metadata.gz: 22a104d5ebc991e0a28dc44315328a4526dfa7b217284c9b7bfbc2d8b1478daf1d473541799fc46b81afac1e28d1c2f7fa10cfceaea7eb330d3a6738b061e037
7
- data.tar.gz: e03f4510b72135c59bda4c50f9737a933beb8e791b7a6baa8d1ab4909e297e3a5c73f0b2f1c879f830b92807b5b714b8a379b8e2a53921ec787ec92c458b0121
6
+ metadata.gz: 1a6af753aa61a1e80ed734eabb2fa70b8c14e2c1d2fd43a8f95f600732c02d2de08018cb9f41ce776d7796815f8da52fff4a95b05fccb732fe58506d6c38cb2f
7
+ data.tar.gz: 1724f003506854bc011c90402584a898534059b022de87385e0f8f2b24879897f23d33219f732489212aaf86b58eaa3c6d6ceb4e86c028daacd5180bc3be07ae
data/Gemfile CHANGED
@@ -1,5 +1,16 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec
4
6
 
5
- gem 'kgio', :platform => :mri
7
+ group :test do
8
+ gem 'minitest'
9
+ gem 'rake'
10
+ gem 'rubocop'
11
+ gem 'rubocop-minitest'
12
+ gem 'rubocop-performance'
13
+ gem 'rubocop-rake'
14
+ gem 'ruby-prof', platform: :mri
15
+ gem 'simplecov'
16
+ end
data/History.md CHANGED
@@ -1,6 +1,157 @@
1
1
  Dalli Changelog
2
2
  =====================
3
3
 
4
+ Unreleased
5
+ ==========
6
+
7
+ 3.2.1
8
+ ==========
9
+
10
+ - Fix null replacement bug on some SASL-authenticated services (veritas1)
11
+
12
+ 3.2.0
13
+ ==========
14
+
15
+ - BREAKING CHANGE: Remove protocol_implementation client option (petergoldstein)
16
+ - Add protocol option with meta implementation (petergoldstein)
17
+
18
+ 3.1.6
19
+ ==========
20
+
21
+ - Fix bug with cas/cas! with "Not found" value (petergoldstein)
22
+ - Add Ruby 3.1 to CI (petergoldstein)
23
+ - Replace reject(&:nil?) with compact (petergoldstein)
24
+
25
+ 3.1.5
26
+ ==========
27
+
28
+ - Fix bug with get_cas key with "Not found" value (petergoldstein)
29
+ - Replace should return nil, not raise error, on miss (petergoldstein)
30
+
31
+ 3.1.4
32
+ ==========
33
+
34
+ - Improve response parsing performance (casperisfine)
35
+ - Reorganize binary protocol parsing a bit (petergoldstein)
36
+ - Fix handling of non-ASCII keys in get_multi (petergoldstein)
37
+
38
+ 3.1.3
39
+ ==========
40
+
41
+ - Restore falsey behavior on delete/delete_cas for nonexistent key (petergoldstein)
42
+
43
+ 3.1.2
44
+ ==========
45
+
46
+ - Make quiet? / multi? public on Dalli::Protocol::Binary (petergoldstein)
47
+
48
+ 3.1.1
49
+ ==========
50
+
51
+ - Add quiet support for incr, decr, append, depend, and flush (petergoldstein)
52
+ - Additional refactoring to allow reuse of connection behavior (petergoldstein)
53
+ - Fix issue in flush such that it wasn't passing the delay argument to memcached (petergoldstein)
54
+
55
+ 3.1.0
56
+ ==========
57
+
58
+ - BREAKING CHANGE: Update Rack::Session::Dalli to inherit from Abstract::PersistedSecure. This will invalidate existing sessions (petergoldstein)
59
+ - BREAKING CHANGE: Use of unsupported operations in a multi block now raise an error. (petergoldstein)
60
+ - Extract PipelinedGetter from Dalli::Client (petergoldstein)
61
+ - Fix SSL socket so that it works with pipelined gets (petergoldstein)
62
+ - Additional refactoring to split classes (petergoldstein)
63
+
64
+ 3.0.6
65
+ ==========
66
+
67
+ - Fix regression in SASL authentication response parsing (petergoldstein)
68
+
69
+ 3.0.5
70
+ ==========
71
+
72
+ - Add Rubocop and fix most outstanding issues (petergoldstein)
73
+ - Extract a number of classes, to simplify the largest classes (petergoldstein)
74
+ - Ensure against socket corruption if an error occurs in a multi block (petergoldstein)
75
+
76
+ 3.0.4
77
+ ==========
78
+
79
+ - Clean connections and retry after NetworkError in get_multi (andrejbl)
80
+ - Internal refactoring and cleanup (petergoldstein)
81
+
82
+ 3.0.3
83
+ ==========
84
+
85
+ - Restore ability for `compress` to be disabled on a per request basis (petergoldstein)
86
+ - Fix broken image in README (deining)
87
+ - Use bundler-cache in CI (olleolleolle)
88
+ - Remove the OpenSSL extensions dependency (petergoldstein)
89
+ - Add Memcached 1.5.x to the CI matrix
90
+ - Updated compression documentation (petergoldstein)
91
+
92
+ 3.0.2
93
+ ==========
94
+
95
+ - Restore Windows compatibility (petergoldstein)
96
+ - Add JRuby to CI and make requisite changes (petergoldstein)
97
+ - Clarify documentation for supported rubies (petergoldstein)
98
+
99
+ 3.0.1
100
+ ==========
101
+
102
+ - Fix syntax error that prevented inclusion of Dalli::Server (ryanfb)
103
+ - Restore with method required by ActiveSupport::Cache::MemCacheStore
104
+
105
+ 3.0.0
106
+ ==========
107
+ - BREAKING CHANGES:
108
+
109
+ * Removes :dalli_store.
110
+ Use Rails' official :mem_cache_store instead.
111
+ https://guides.rubyonrails.org/caching_with_rails.html
112
+ * Attempting to store a larger value than allowed by memcached used to
113
+ print a warning and truncate the value. This now raises an error to
114
+ prevent silent data corruption.
115
+ * Compression now defaults to `true` for large values (greater than 4KB).
116
+ This is intended to minimize errors due to the previous note.
117
+ * Errors marshalling values now raise rather than just printing an error.
118
+ * The Rack session adapter has been refactored to remove support for thread-unsafe
119
+ configurations. You will need to include the `connection_pool` gem in
120
+ your Gemfile to ensure session operations are thread-safe.
121
+
122
+ - Raise NetworkError when multi response gets into corrupt state (mervync, #783)
123
+ - Validate servers argument (semaperepelitsa, petergoldstein, #776)
124
+ - Enable SSL support (bdunne, #775)
125
+ - Add gat operation (tbeauvais, #769)
126
+ - Removes inline native code, use Ruby 2.3+ support for bsearch instead. (mperham)
127
+ - Switch repo to Github Actions and upgrade Ruby versions (petergoldstein, bdunne, Fryguy)
128
+ - Update benchmark test for Rubyprof changes (nateberkopec)
129
+ - Remove support for the `kgio` gem, it is not relevant in Ruby 2.3+. (mperham)
130
+ - Remove inline native code, use Ruby 2.3+ support for bsearch instead. (mperham)
131
+
132
+
133
+ 2.7.11
134
+ ==========
135
+ - DEPRECATION: :dalli_store will be removed in Dalli 3.0.
136
+ Use Rails' official :mem_cache_store instead.
137
+ https://guides.rubyonrails.org/caching_with_rails.html
138
+ - Add new `digest_class` option to Dalli::Client [#724]
139
+ - Don't treat NameError as a network error [#728]
140
+ - Handle nested comma separated server strings (sambostock)
141
+
142
+ 2.7.10
143
+ ==========
144
+ - Revert frozen string change (schneems)
145
+ - Advertise supports_cached_versioning? in DalliStore (schneems)
146
+ - Better detection of fork support, to allow specs to run under Truffle Ruby (deepj)
147
+ - Update logging for over max size to log as error (aeroastro)
148
+
149
+ 2.7.9
150
+ ==========
151
+ - Fix behavior for Rails 5.2+ cache_versioning (GriwMF)
152
+ - Ensure fetch provides the key to the fallback block as an argument (0exp)
153
+ - Assorted performance improvements (schneems)
154
+
4
155
  2.7.8
5
156
  ==========
6
157
  - Rails 5.2 compatibility (pbougie)
data/README.md CHANGED
@@ -1,246 +1,50 @@
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
- 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.
4
+ Dalli is a high performance pure Ruby client for accessing memcached servers.
5
5
 
6
- The name is a variant of Salvador Dali for his famous painting [The Persistence of Memory](http://en.wikipedia.org/wiki/The_Persistence_of_Memory).
7
-
8
- ![Persistence of Memory](http://www.virtualdali.com/assets/paintings/31PersistenceOfMemory.jpg)
9
-
10
- Dalli's initial development was sponsored by [CouchBase](http://www.couchbase.com/). Many thanks to them!
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
- Supported Ruby versions and implementations
33
- ------------------------------------------------
34
-
35
- Dalli should work identically on:
36
-
37
- * JRuby 1.6+
38
- * Ruby 1.9.3+
39
- * Rubinius 2.0
40
-
41
- If you have problems, please enter an issue.
42
-
43
-
44
- Installation and Usage
45
- ------------------------
46
-
47
- Remember, Dalli **requires** memcached 1.4+. You can check the version with `memcached -h`. Please note that the memcached version that *Mac OS X Snow Leopard* ships with is 1.2.8 and it won't work. Install memcached 1.4.x using Homebrew with
48
-
49
- brew install memcached
50
-
51
- On Ubuntu you can install it by running:
52
-
53
- apt-get install memcached
54
-
55
- You can verify your installation using this piece of code:
56
-
57
- ```bash
58
- gem install dalli
59
- ```
60
-
61
- ```ruby
62
- require 'dalli'
63
- options = { :namespace => "app_v1", :compress => true }
64
- dc = Dalli::Client.new('localhost:11211', options)
65
- dc.set('abc', 123)
66
- value = dc.get('abc')
67
- ```
68
-
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. You can optionally install the 'kgio' gem to
72
- give Dalli a 20-30% performance boost.
73
-
74
-
75
- Usage with Rails 3.x and 4.x
76
- ---------------------------
77
-
78
- In your Gemfile:
79
-
80
- ```ruby
81
- gem 'dalli'
82
- ```
83
-
84
- In `config/environments/production.rb`:
85
-
86
- ```ruby
87
- config.cache_store = :dalli_store
88
- ```
89
-
90
- 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.
91
-
92
- ```ruby
93
- config.cache_store = :dalli_store, 'cache-1.example.com', 'cache-2.example.com:11211:2',
94
- { :namespace => NAME_OF_RAILS_APP, :expires_in => 1.day, :compress => true }
95
- ```
96
-
97
- 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` )
98
-
99
- 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:
100
-
101
- ```ruby
102
- config.cache_store = :dalli_store, nil, { :namespace => NAME_OF_RAILS_APP, :expires_in => 1.day, :compress => true }
103
- ```
104
-
105
- To use Dalli for Rails session storage that times out after 20 minutes, in `config/initializers/session_store.rb`:
106
-
107
- For Rails >= 3.2.4:
108
-
109
- ```ruby
110
- Rails.application.config.session_store ActionDispatch::Session::CacheStore, :expire_after => 20.minutes
111
- ```
6
+ Dalli supports:
112
7
 
113
- For Rails 3.x:
8
+ * Simple and complex memcached configurations
9
+ * Failover between memcached instances
10
+ * Fine-grained control of data serialization and compression
11
+ * Thread-safe operation (either through use of a connection pool, or by using the Dalli client in threadsafe mode)
12
+ * SSL/TLS connections to memcached
13
+ * SASL authentication
114
14
 
115
- ```ruby
116
- require 'action_dispatch/middleware/session/dalli_store'
117
- Rails.application.config.session_store :dalli_store, :memcache_server => ['host1', 'host2'], :namespace => 'sessions', :key => '_foundation_session', :expire_after => 20.minutes
118
- ```
119
-
120
- Dalli does not support Rails 2.x.
121
-
122
-
123
- Multithreading and Rails
124
- --------------------------
125
-
126
- If you use Puma or another threaded app server, as of Dalli 2.7, you can use a pool
127
- of Dalli clients with Rails to ensure the `Rails.cache` singleton does not become a
128
- source of thread contention. You must add `gem 'connection_pool'` to your Gemfile and
129
- add :pool\_size to your `dalli_store` config:
130
-
131
- ```ruby
132
- config.cache_store = :dalli_store, 'cache-1.example.com', { :pool_size => 5 }
133
- ```
134
-
135
- 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:
136
-
137
- ```ruby
138
- Rails.cache.fetch('foo', :expires_in => 300) do
139
- 'bar'
140
- end
141
-
142
- Rails.cache.dalli.with do |client|
143
- # client is a Dalli::Client instance which you can
144
- # use ONLY within this block
145
- end
146
- ```
147
-
148
-
149
- Configuration
150
- ------------------------
151
-
152
- **servers**: An Array of "host:port:weight" where weight allows you to distribute cache unevenly.
153
-
154
- Dalli::Client accepts the following options. All times are in seconds.
155
-
156
- **expires_in**: Global default for key TTL. Default is 0, which means no expiry.
157
-
158
- **namespace**: If specified, prepends each key with this value to provide simple namespacing. Default is nil.
159
-
160
- **failover**: Boolean, if true Dalli will failover to another server if the main server for a key is down. Default is true.
161
-
162
- **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.
163
-
164
- **serializer**: The serializer to use for objects being stored (ex. JSON).
165
- Default is Marshal.
166
-
167
- **compress**: Boolean, if true Dalli will gzip-compress values larger than 1K. Default is false.
168
-
169
- **compression_min_size**: Minimum value byte size for which to attempt compression. Default is 1K.
170
-
171
- **compression_max_size**: Maximum value byte size for which to attempt compression. Default is unlimited.
172
-
173
- **compressor**: The compressor to use for objects being stored.
174
- Default is zlib, implemented under `Dalli::Compressor`.
175
- If serving compressed data using nginx's HttpMemcachedModule, set `memcached_gzip_flag 2` and use `Dalli::GzipCompressor`
176
-
177
- **keepalive**: Boolean. If true, Dalli will enable keep-alive for socket connections. Default is true.
178
-
179
- **socket_timeout**: Timeout for all socket operations (connect, read, write). Default is 0.5.
180
-
181
- **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.
182
-
183
- **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.
184
-
185
- **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.
186
-
187
- **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.
188
-
189
- **error_when_over_max_size**: Boolean. If true, Dalli will throw a Dalli::ValueOverMaxSize exception when trying to store data larger than **value_max_bytes**. Defaults to false, meaning only a warning is logged.
190
-
191
- **username**: The username to use for authenticating this client instance against a SASL-enabled memcached server. Heroku users should not need to use this normally.
192
-
193
- **password**: The password to use for authenticating this client instance against a SASL-enabled memcached server. Heroku users should not need to use this normally.
194
-
195
- **sndbuf**: In bytes, set the socket SO_SNDBUF. Defaults to operating system default.
196
-
197
- **rcvbuf**: In bytes, set the socket SO_RCVBUF. Defaults to operating system default.
198
-
199
- **cache_nils**: Boolean. If true Dalli will not treat cached `nil` values as 'not found' for `#fetch` operations. Default is false.
200
-
201
- **raise_errors**: Boolean. When true DalliStore will reraise Dalli:DalliError instead swallowing the error. Default is false.
202
-
203
- **instrument_errors**: Boolean. When true DalliStore will send notification of Dalli::DalliError via a 'cache_error.active_support' event. Default is false.
204
-
205
- Features and Changes
206
- ------------------------
207
-
208
- By default, Dalli is thread-safe. Disable thread-safety at your own peril.
209
-
210
- Dalli does not need anything special in Unicorn/Passenger since 2.0.4.
211
- It will detect sockets shared with child processes and gracefully reopen the
212
- socket.
15
+ The name is a variant of Salvador Dali for his famous painting [The Persistence of Memory](http://en.wikipedia.org/wiki/The_Persistence_of_Memory).
213
16
 
214
- Note that Dalli does not require ActiveSupport or Rails. You can safely use it in your own Ruby projects.
17
+ ![Persistence of Memory](https://upload.wikimedia.org/wikipedia/en/d/dd/The_Persistence_of_Memory.jpg)
215
18
 
216
- [View the Client API](http://www.rubydoc.info/github/mperham/dalli/Dalli/Client)
217
19
 
218
- Helping Out
219
- -------------
20
+ ## Documentation and Information
220
21
 
221
- If you have a fix you wish to provide, please fork the code, fix in your local project and then send a pull request on github. Please ensure that you include a test which verifies your fix and update History.md with a one sentence description of your fix so you get credit as a contributor.
22
+ * [User Documentation](https://github.com/petergoldstein/dalli/wiki) - The documentation is maintained in the repository's wiki.
23
+ * [Announcements](https://github.com/petergoldstein/dalli/discussions/categories/announcements) - Announcements of interest to the Dalli community will be posted here.
24
+ * [Bug Reports](https://github.com/petergoldstein/dalli/issues) - If you discover a problem with Dalli, please submit a bug report in the tracker.
25
+ * [Forum](https://github.com/petergoldstein/dalli/discussions/categories/q-a) - If you have questions about Dalli, please post them here.
26
+ * [Client API](https://www.rubydoc.info/github/petergoldstein/dalli/master/Dalli/Client) - Ruby documentation for the `Dalli::Client` API
222
27
 
223
- We're not accepting new compressors. They are trivial to add in an initializer. See #385 (LZ4), #406 (Snappy)
28
+ ## Contributing
224
29
 
225
- Thanks
226
- ------------
30
+ If you have a fix you wish to provide, please fork the code, fix in your local project and then send a pull request on github. Please ensure that you include a test which verifies your fix and update `History.md` with a one sentence description of your fix so you get credit as a contributor.
227
31
 
228
- Mike Perham - for originally authoring the Dalli project and serving as maintainer and primary contributor
32
+ ## Appreciation
229
33
 
230
- Eric Wong - for help using his [kgio](http://bogomips.org/kgio/) library.
34
+ Dalli would not exist in its current form without the contributions of many people. But special thanks go to several individuals and organizations:
231
35
 
232
- Brian Mitchell - for his remix-stash project which was helpful when implementing and testing the binary protocol support.
36
+ * Mike Perham - for originally authoring the Dalli project and serving as maintainer and primary contributor for many years
37
+ * Eric Wong - for help using his [kgio](http://bogomips.org/kgio/) library.
38
+ * Brian Mitchell - for his remix-stash project which was helpful when implementing and testing the binary protocol support.
39
+ * [CouchBase](http://couchbase.com) - for their sponsorship of the original development
233
40
 
234
- [CouchBase](http://couchbase.com) - for their project sponsorship
235
41
 
236
- Authors
237
- ----------
42
+ ## Authors
238
43
 
239
44
  * [Peter M. Goldstein](https://github.com/petergoldstein) - current maintainer
240
45
  * [Mike Perham](https://github.com/mperham) and contributors
241
46
 
242
47
 
243
- Copyright
244
- -----------
48
+ ## Copyright
245
49
 
246
50
  Copyright (c) Mike Perham, Peter M. Goldstein. See LICENSE for details.
@@ -1,59 +1,3 @@
1
1
  # frozen_string_literal: true
2
- require 'dalli/client'
3
2
 
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
3
+ puts "You can remove `require 'dalli/cas/client'` as this code has been rolled into the standard 'dalli/client'."