Retools

Latest version: v0.4.1

Safety actively analyzes 619426 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

0.4.1

==================

Bug Fixes
---------

- Properly support StrictRedis with ZADD (used in the limiter). Patch by
Bernardo Heynemann.

0.4

================

Features
--------

- Added limiter functionality. Pull request 22, by Bernardo Heynemann.

0.3

================

Bug Fixes
---------

- Call redis.expire with proper expires value for RedisLock. Patch by
Mike McCabe.
- Use functools.wraps to preserve doc strings for cache_region. Patch by
Daniel Holth.

API Changes
-----------

- Added get_job/get_jobs methods to QueueManager class to get information
on a job or get a list of jobs for a queue.

0.2

================

Bug Fixes
---------

- Critical fix for caching that prevents old values from being displayed
forever. Thanks to Daniel Holth for tracking down the problem-aware.
- Actually sets the Redis expiration for a value when setting the cached
value in Redis. This defaults to 1 week.

Features
--------

- Statistics for the cache is now optional and can be disabled to slightly
reduce the Redis queries used to store/retrieve cache data.
- Added first revision of worker/job Queue system, with event support.

Internals
---------

- Heavily refactored ``Connection`` to not be a class singleton, instead
a global_connection instance is created and used by default.
- Increased conditional coverage to 100% (via instrumental_).

Backwards Incompatibilities
---------------------------

- Changing the default global Redis connection has changed semantics, instead
of using ``Connection.set_default``, you should set the global_connection's
redis property directly::

import redis
from retools import global_connection

global_connection.redis = redis.Redis(host='myhost')


Incompatibilities
-----------------

- Removed clear argument from invalidate_region, as removing keys from the
set but not removing the hit statistics can lead to data accumulating in
Redis that has no easy removal other than .keys() which should not be run
in production environments.

- Removed deco_args from invalidate_callable (invalidate_function) as its
not actually needed since the namespace is already on the callable to
invalidate.

0.1

================

Features
--------

- Caching in a similar style to Beaker, with hit/miss statistics, backed by
a Redis global write-lock with old values served to prevent the dogpile
effect
- Redis global lock

.. _instrumental: http://pypi.python.org/pypi/instrumental

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.