SECAI Core · phase 3 of 15 · noun

Vector storage

A lookup table that turns pieces of text into numeric fingerprints

The Explain card

Plain English
Vector storage is a lookup system that turns pieces of text into numeric fingerprints (embeddings) and finds the entries whose fingerprints are closest to a query.
Example
A retrieval-augmented chatbot stores every company policy as a vector. When a user asks about expense limits, the nearest vectors are fetched and handed to the LLM as context.
Why it matters
Whatever sits in the vector store becomes what the model "knows". Poisoned entries feed injected instructions into answers, and embeddings can sometimes be reversed to recover the original text.
Hook
A library sorted by meaning rather than by title.

Word knowledge

How the word is built, where it came from, and what it sits beside in memory.

In a sentence

At query time, a RAG retriever searches vector storage for the nearest neighbors of the encoded question and returns those passages to the generator.

Why these words
  • vector Latin vector, carrier, from vehere, to carry names what is kept, a directed quantity the system can compare rather than a document or a file
  • storage English store plus -age, from Old French estorer, to furnish names the keeping, so the phrase is a place that holds those quantities rather than a method that searches them
Where it came from
Origin
English machine-learning collocation from Latin vector (carrier, from vehere, to carry) and English storage (store plus -age, from Old French estorer, to furnish)
Entered the language
2010s
What changed
Vector had meant a carrier, then a line from a center, then a quantity with direction, then a list of numbers a machine can compare. Storage had meant a larder, then a warehouse, then a computer's keep. Similarity-search papers of the 2010s joined the two words for the component that holds those lists so a query can find its nearest neighbors.
How it is spelled
Pattern
-or agent nouns from Latin name the one who does the verb: vector is the carrier
Pattern
-age nouns name an action or a place from a verb: store becomes storage
Pattern
a silent e drops before -age: store becomes storage, never storeage
Pattern
ct keeps the Latin cluster, as in doctor and tractor
Breaks the pattern
the noun phrase stays two words; a hyphen appears only when it modifies another noun
Breaks the pattern
papers also write vector store, dropping -age, for the same component

Spelled like

  • actor
  • tractor
  • postage
  • coverage
Broken into chunks
  • vect
    • convection
    • invective
    • vectorize
  • or
    • actor
    • doctor
    • tractor
  • stor
    • store
    • restore
    • storehouse
  • age
    • postage
    • wreckage
    • coverage
What it sits beside

Same subject

Same shape

Storage compounds

Representation and retrieval

Vector compounds

  • vector search
  • vector database
  • vector graphics

Where it sits in the deck

Phase 3: Data Fundamentals: Types, Pipelines, and Preparation

Models are only as good as their data — understand the raw material and the engineering that shapes it before covering how it flows or breaks.