README.md in dalli-2.7.8 vs README.md in dalli-2.7.9

- old
+ new

@@ -64,13 +64,14 @@ dc = Dalli::Client.new('localhost:11211', options) dc.set('abc', 123) value = dc.get('abc') ``` -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. +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. -Dalli has no runtime dependencies and never will. You can optionally install the 'kgio' gem to +Dalli has no runtime dependencies and never will. If you are using Ruby <2.3, +you can optionally install the '[kgio](https://bogomips.org/kgio/)' gem to give Dalli a 20-30% performance boost. Usage with Rails 3.x and 4.x --------------------------- @@ -216,10 +217,10 @@ [View the Client API](http://www.rubydoc.info/github/mperham/dalli/Dalli/Client) Helping Out ------------- -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. +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. We're not accepting new compressors. They are trivial to add in an initializer. See #385 (LZ4), #406 (Snappy) Thanks ------------