The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Revision history for Redis::CappedCollection module

0.17  Thu Apr  23 2015
    CHANGES:
    - Added 'create', 'open' constructors.
    - Added 'collection_exists', 'resize' methods.
    - 'open', 'collection_info', 'collection_exists', 'resize', 'drop_collection'
      may be used as functions.
    - Redis::CappedCollection->new() is deprecated and will be removed in future.
      Please use either create() or open() instead.
    - The 'quit' method does not close connection to Redis during
      global destruction phase (Perl version 5.14 and above).

0.16  Tue May  27 2014
    CHANGES:
    - Added argument 'check_maxmemory' to the Redis::CappedCollection->new .

0.13 - 0.15  Wed Apr  02 2014
    CHANGES:
    - Small test improvement.

0.12  Fri Mar  14 2014
    CHANGES:
    - Change the port used for testing.

0.11  Fri Nov  15 2013
    CHANGES:
    - Adjust Redis server connection parameters.
      (Starting with version 1.963, Redis module doesn't support encoding)

0.10  Fri Oct  25 2013
    FIXES:
    - Fix runtime loading of Test::*

0.09  Fri Sep  27 2013
    FIXES:
    - Tests fine-tuned to the correct execution of 32-bit systems.

0.08  Wed Sep  18 2013
    CHANGES:
    - Use Try::Tiny for proper preservation of $@ .

0.07  Thu Mar  14 2013
    CHANGES:
    - Account for Redis memory overhead when checking collection size:
    use package variable $REDIS_MEMORY_OVERHEAD to adjust overhead estimate

0.06  Thu Mar  14 2013
    CHANGES:
    - Use Redis maxmemory setting to set 'size' if not provided in constructor

0.05  Fri Mar  08 2013
    CHANGES:
    - The tests are executed even if the installed Redis server is not running

0.04  Fri Mar  08 2013
    CHANGES:
    - Added method 'ping'

0.03  Wed Feb  13 2013
    CHANGES:
    - 'new' indirectly detects no connection to the Redis server

0.02  Tue Dec  18 2012
    CHANGES:
    - Checking Perl version in Makefile.PL

0.01  Wed Oct  17 2012
    - Original version