Skip to content

Releases: QuickServerLab/QuickCached

QuickCached v2.0.2

12 Aug 18:30
Compare
Choose a tag to compare

QuickCached is a pure Java implementation of Memcached server based on QuickServer. It is a open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

QuickCached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.

QuickCached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches.

# Bug Fixes
+ Upgraded QuickServer to 2.1.0

QuickCached v2.0.1

02 Jul 17:24
Compare
Choose a tag to compare

QuickCached is a pure Java implementation of Memcached server based on QuickServer. It is a open source, high-performance, distributed memory object caching system, generic in nature, but intended for use in speeding up dynamic web applications by alleviating database load.

QuickCached is an in-memory key-value store for small chunks of arbitrary data (strings, objects) from results of database calls, API calls, or page rendering.

QuickCached is simple yet powerful. Its simple design promotes quick deployment, ease of development, and solves many problems facing large data caches.

+ Added QuickCached Client
+ Server: Added support to configure max key size (default: 250)
+ Server: Added support to configure max value size (default: 6MB)
# Server: Modified server to close connection when bad req 
  (with invalid parameters) received (to prevent bad processing of data)
+ Client: Added support to configure max key size (default: 250)
+ Client: Added support to configure max value size (default: 6MB)
+ Added total_res_count,slow_res_count,slow_res_percent,slow_res_avg_time_ms to stats
# Fixed slow res calculation bugs
# Fixed pool size in load test code
# Fixed get_count in stats bug (was including internal get calls)
# Bug fixes