An AIMP index is a logical namespace that holds a collection of documents, where each document is a collection of fields — which, in turn, are key-value pairs that contain your data. Indexes are not the same as you’d find in a relational database. Think of an AIMP project as a database that can contain many indexes you can consider as a table, and within each index, you have many documents.Documentation Index
Fetch the complete documentation index at: https://wrtntechnologies.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- RDBMS => Databases => Tables => Columns/Rows
- AIMP => Projects => Indexes => Documents with key-value pairs
Index classes
AIMP provides two types of index classes based on access frequency:STANDARD and INFREQUENT_ACCESS.
STANDARDindexes are optimized for high-throughput, low-latency access to your data.INFREQUENT_ACCESSindexes are optimized for infrequent access to your data.