Setup & Guide
Installation & Setup
To use Memorylake, install the required dependencies (ignore Groclake installation if already did) :
pip install groclake
pip install python-dotenvThen, configure Redis in a .env file:
REDIS_HOST=localhost
REDIS_PORT=6379Initializing Memorylake
from memorylake import Memorylake
memory_lake = Memorylake()Last updated