Project

Vector store

Vector store is an important storage system in the AI era. I believe it not only serves as an cache used to retrieve computation results from neural networks, but also becomes (or will become) a fundamental component at the core of neural models. For example, we realized that attention, a fundamental mechanism in the Transform-like neural architecture, can be viewed as vector index traversal (Liu et al., 2025). This makes the computation of sparse attention much more efficient. In the case of LLMs with a long context window, the benefit can be of one or multiple orders of magnitude. Recently, we have realized the connection between vector store and the long-term memory, similar to human’s hippocampus. We observe that long-term memory plays a critical role in pushing the boundary of human intelligence. We will share more soon.

Here are some of our thoughts on vector store.

  • Integrating vector indices with relational databases using relaxed monotonicity. (Zhang et al., 2023).
  • Updating a vector index incrementally. (Xu et al., 2023).
  • Vector indices can be dense or sparse. Instead of represented with separated solutions, they can be unified with one generic design. (Chen et al., 2024).
  • Attention can be transformed as vector retrieval, thus making sparse attention significantly more efficient. (missing reference), (Chen et al., 2025)

References

2025

  1. RetrievalAttention: Accelerating Long-Context LLM Inference via Vector Retrieval
    Di Liu, and
    NeurIPS 2025.
  2. RetroInfer: A Vector-Storage Approach for Scalable Long-Context LLM Inference
    Yaoqi Chen, and
    ArXiv 2025. (A revised version appears in VLDB’26).

2024

  1. WWW
    OneSparse: A Unified System for Multi-index Vector Search
    Yaoqi Chen, and
    WWW 2024, Singapore, Singapore.

2023

  1. VBASE: Unifying Online Vector Similarity Search and Relational Queries via Relaxed Monotonicity
    Qianxi Zhang, and
    OSDI 2023.
  2. SPFresh: Incremental In-Place Update for Billion-Scale Vector Search
    Yuming Xu, and
    SOSP 2023.

← Back to Projects