- Minor bugfix: metrics for outstanding requests could sometimes return the wrong value after connection is closed
- Deprecate withRequestTimeoutMillis, replace with withConnectionTimeoutMillis.
- Add deleteWithCas
- Take ElastiCache configuration version into account
- Add elasticache resolver
- Add BOM artifact
- Bump dependency versions. This includes major version bumps of com.google.guava:guava and com.spotify.metrics:semantic-metrics-core. Folsom continues supporting also the old versions, so users can delay upgrading if needed.
- Add support for OpenCensus based tracing
- Implemented support for reading memcached statistics
- Added support for setting multiple usernames/passwords for SASL authentications
- Fixed problem with release being built using a too new JDK, causing runtime errors
- Fixed bug with reconnections during high request loads
- Added MemcachedClient.deleteAll() method
- Reuse existing connections on DNS updates.
- Fixed bug with the outstanding-requests metric.
- Extracted Yammer metrics to a separate module to limit dependencies.
add "folsom-yammer-metrics" module to your project's dependencies if you need
YammerMetrics
class. - Added support for configurable batch size when creating clients. See the new
withRequestBatchSize(int)
method inMemcacheClientBuilder
. - More precise timeout detection (check every 10 ms instead of every second)
- Always send expiration values to server as TTL instead of timestamp for TTL's up to 30 days.
- Fixed memory/fd/thread leak introduced in 1.1.0
- Added MemcachedClient.flushAll() method
- Add support for SASL authentication for binary protocol
- Fixed bug with setting too large values
- Added specifiable Netty EventLoopGroup and executor
Non backwards-compatible change
- Requires Java 8
- API now uses CompletionStage instead of ListenableFuture - be careful about exception handling as things may come wrapped in CompletionException now!
- Remove HostAndPort from API and inline internal usage to avoid Guava version conflicts
- Add utility methods for waiting for connects and disconnects.
- Added withMaxKeyLength which can be used if the memcache server has different key length restrictions
- Fixed race condition in ReconnectingClient, causing shutdowns to fail
- Make more robust client shutdown logic
- Add Utils.getGlobalConnectionCount() to track number of memcached connections. Also add metrics for this to YammerMetrics
- Minimize Netty dependency
- Make sure build works on Java 9
- Fix broken GAT (get and touch)
- Allow for overriding integration server address
- Bump OSS parent
- Fixed bug that broke reconnects
- Fix minor bug where requests to a disconnected client appears to have hit the outstanding request limit.
- Disallow set-requests with too large values and also make that limit configurable.
- Update to dns-java 3.0.1 which is not backwards compatible
- Fixed bug that broke reconnects
- Fix minor bug where requests to a disconnected client appears to have hit the outstanding request limit.
- Disallow set-requests with too large values and also make that limit configurable.
- Monkey patch jmemcached to make tests more robust.
- Add metrics-support for pending requests.
- Fix race condition on client timeout.
- Partition large multiget requests.
- Various minor refactoring and added tests.
- Fix bug with creating SRV client from MemcacheClientBuilder
- Add SRV Ketama support.
- Relax restrictions on key format.
- Add support for configurable key charset.
- Add internal API for observing connection changes.
- And some minor bugfixes
First public release