Skip to content

Commit c15d046

Browse files
Update README.md
1 parent bbd3bd2 commit c15d046

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

README.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,22 @@ collector.export(...)
4848

4949
## Data Freshness
5050
As a data framework, CocoIndex takes it to the next level on data freshness. Incremental processing is one of the core values provided by CocoIndex.
51+
52+
<p align="center">
53+
<img src="https://github.com/user-attachments/assets/4ead7275-8df6-42aa-ba06-81248aa7f8bf" alt="Incremental Processing" width="800">
54+
</p>
55+
5156
The frameworks takes care of
5257
- Change data capture
5358
- Figuring out what exactly needs to be updated, and only updating that without having to recompute everything throughout.
5459
This makes it fast to reflect any source updates to the target store. If you have concerns with surfacing stale data to AI agents and are spending lots of efforts working on infra piece to optimize the latency, the framework actually handles it for you.
5560

5661

5762
## Quick Start:
58-
If you're new to CocoIndex 🤗, we recommend checking out the 📖 [Documentation](https://cocoindex.io/docs) and ⚡ [Quick Start Guide](https://cocoindex.io/docs/getting_started/quickstart). We also have a ▶️ [quick start video tutorial](https://youtu.be/gv5R8nOXsWU?si=9ioeKYkMEnYevTXT) for you to jump start.
63+
If you're new to CocoIndex, we recommend checking out
64+
- 📖 [Documentation](https://cocoindex.io/docs)
65+
-[Quick Start Guide](https://cocoindex.io/docs/getting_started/quickstart)
66+
- 🎬 [Quick Start Video Tutorial](https://youtu.be/gv5R8nOXsWU?si=9ioeKYkMEnYevTXT)
5967

6068
### Setup
6169
1. Install CocoIndex Python library
@@ -64,17 +72,12 @@ If you're new to CocoIndex 🤗, we recommend checking out the 📖 [Documentati
6472
pip install -U cocoindex
6573
```
6674

67-
2. Setup Postgres with pgvector extension; or bring up a Postgres database using docker compose:
68-
69-
- Make sure Docker Compose is installed: [docs](https://docs.docker.com/compose/install/)
70-
- Start a Postgres SQL database for cocoindex using our docker compose config:
75+
2. [Install Postgres](https://cocoindex.io/docs/getting_started/installation#-install-postgres) if you don't have one. CocoIndex uses it for incremental processing.
7176

72-
```bash
73-
docker compose -f <(curl -L https://raw.githubusercontent.com/cocoindex-io/cocoindex/refs/heads/main/dev/postgres.yaml) up -d
74-
```
7577

7678
### Start your first indexing flow!
7779
Follow [Quick Start Guide](https://cocoindex.io/docs/getting_started/quickstart) to define your first indexing flow.
80+
7881
A common indexing flow looks like:
7982

8083
```python

0 commit comments

Comments
 (0)