
Security News
CISA Kills Off RSS Feeds for KEVs and Cyber Alerts
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
asyncio
.pip install redis-manager
from redis_manager.redis_manager import RedisManager
async def main():
manager = RedisManager(connection_pools_per_node_at_start=2)
await manager.add_node_pool("redis://localhost")
manager.start_cleanup()
# Note: The RedisManager can be wrapped in a try/catch block to gracefully handle exceptions
# such as connection errors or unavailability of Redis nodes.
async with manager.get_client("redis://localhost") as client:
await client.set("key", "value")
value = await client.get("key")
print(value)
# Stop tasks and close pools
manager.stop_health_checks()
manager.stop_cleanup()
await manager.close_all_pools()
graph TD
subgraph RedisManager
A[Connection Pools] -->|Healthy Connections| B[Redis Nodes]
A -->|Health Check Task| C[Periodic Health Checks]
A -->|Cleanup Task| D[Idle Connection Cleanup]
end
B -->|Commands| E[Redis Server]
subgraph Monitoring
A -->|Metrics| F[Prometheus Exporter]
F --> G[Prometheus]
G --> H[Grafana Dashboard]
end
Detailed changelog in CHANGELOG.md.
Licensed under the MIT License. See LICENSE file for more details.
We welcome contributions! Please see our Contributing Guide and Code of Conduct to get started.
Initially Developed by Youssef Khaya
FAQs
A Redis connection pool manager with asyncio support.
We found that redis-manager demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.