📄️ Overview
Lookup lists function similarly to in-memory stores like Redis but with a key distinction: lookup lists are static and do not support write operations. Lookup lists are ideal for use cases where values remain unchanged during server operation.
📄️ Local
Local lookup lists are static lists that are kept entirely in memory. They are defined directly in the configuration file and are useful for storing small amounts of static data that do not change often.
📄️ Remote
Remote lookup lists enable the retrieval of key-value pairs from external sources over HTTP, providing a flexible solution for configurations that need centralized management or periodic updates. These lists support two formats: a simple list format, where each entry is defined on a separate line, and CSV, offering more structured data handling capabilities.