Mason Kane
Mason Kane
Wouldn't exposing the metrics endpoint with the main app a bad security practice. Maybe add HTTP Basic authentication ?
Referencing #283.
**Describe the bug** `SADDEX` fails to expire members occasionally. Leaving them not having an expiration. **To Reproduce** Here's a test run in python with the redis-py package: ```python from asyncio...
Consider the following code: ```python import asyncio from decimal import Decimal from aredis_om import JsonModel, Field, Migrator class Book(JsonModel): author : str = Field(index=True) pages : Decimal = Field(index=True, default=Decimal('0'))...