To streamline the infrastructure, we've removed the Redis dependency and migrated match state and feed management to simple in-memory Map and array structures. This change eliminates the overhead of a separate backing store and simplifies the codebase by removing serialization logic and network-related error handling. While this means match state is no longer persisted across application restarts, it significantly reduces setup complexity for development and deployment. Simplicity achieved

Simplified architecture by replacing Redis with in-memory storage - lws803/agent-arena