Skip to content

Commit

Permalink
point to typesense 0.24.0 docs (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
runeanielsen authored Mar 5, 2023
1 parent 94e82f5 commit 468e05d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Example of settings.

## Collection

This section describes how to use the collection, further information can be found [here.](https://typesense.org/docs/0.23.1/api/collections.html#create-a-collection)
This section describes how to use the collection, further information can be found [here.](https://typesense.org/docs/0.24.0/api/collections.html#create-a-collection)

### Create collection

The different `types` for the schema can be found [here](https://typesense.org/docs/0.23.1/api/collections.html#create-a-collection).
The different `types` for the schema can be found [here](https://typesense.org/docs/0.24.0/api/collections.html#create-a-collection).

The examples displays the creation of collection named `companies`.

Expand Down Expand Up @@ -222,7 +222,7 @@ Retrieves the collection on the `collection-name`.

## Documents

This section describes how to use the documents, further information can be found [here.](https://typesense.org/docs/0.23.1/api/documents.html)
This section describes how to use the documents, further information can be found [here.](https://typesense.org/docs/0.24.0/api/documents.html)

### Create document

Expand Down Expand Up @@ -300,7 +300,7 @@ Update document in a collection on id. The update can be partial.

## Create/Upsert/Update/Delete Documents

Create/upsert/update documents. All of them takes optional parameters, an example is setting the batch size using `:batch_size 20`. Read more [here.](https://typesense.org/docs/0.23.1/api/documents.html#import-documents)
Create/upsert/update documents. All of them takes optional parameters, an example is setting the batch size using `:batch_size 20`. Read more [here.](https://typesense.org/docs/0.24.0/api/documents.html#import-documents)

### Create documents

Expand Down Expand Up @@ -379,7 +379,7 @@ Export documents in collection.

## Search

Search for documents in a collection. You can find all the query arguments [here.](https://typesense.org/docs/0.23.1/api/documents.html#arguments)
Search for documents in a collection. You can find all the query arguments [here.](https://typesense.org/docs/0.24.0/api/documents.html#arguments)

```clojure
(search settings "companies" {:q "Innovation"
Expand Down Expand Up @@ -421,7 +421,7 @@ Search for documents in a collection. You can find all the query arguments [here

## Multi search

You can send multiple search requests in a single HTTP request, using the Multi-Search feature. This is especially useful to avoid round-trip network latencies incurred otherwise if each of these requests are sent in separate HTTP requests. You can read more about multi-search [here.](https://typesense.org/docs/0.23.1/api/documents.html#federated-multi-search)
You can send multiple search requests in a single HTTP request, using the Multi-Search feature. This is especially useful to avoid round-trip network latencies incurred otherwise if each of these requests are sent in separate HTTP requests. You can read more about multi-search [here.](https://typesense.org/docs/0.24.0/api/documents.html#federated-multi-search)

```clojure
(multi-search
Expand Down Expand Up @@ -530,7 +530,7 @@ You can send multiple search requests in a single HTTP request, using the Multi-

## Api keys

Typesense allows you to create API Keys with fine-grain access control. You can restrict access on both a per-collection and per-action level, [read more here](https://typesense.org/docs/0.23.1/api/api-keys.html#create-an-api-key)
Typesense allows you to create API Keys with fine-grain access control. You can restrict access on both a per-collection and per-action level, [read more here](https://typesense.org/docs/0.24.0/api/api-keys.html#create-an-api-key)

### Create api key

Expand Down Expand Up @@ -593,7 +593,7 @@ Deletes api key on `id`.

## Curation

Using overrides, you can include or exclude specific documents for a given query, read more [here.](https://typesense.org/docs/0.23.1/api/curation.html)
Using overrides, you can include or exclude specific documents for a given query, read more [here.](https://typesense.org/docs/0.24.0/api/curation.html)

### Create or update an override

Expand Down Expand Up @@ -664,7 +664,7 @@ Deletes override on name.

## Collection alias

An alias is a virtual collection name that points to a real collection. Read more [here](https://typesense.org/docs/0.23.1/api/collection-alias.html)
An alias is a virtual collection name that points to a real collection. Read more [here](https://typesense.org/docs/0.24.0/api/collection-alias.html)

### Create or update alias

Expand Down Expand Up @@ -712,7 +712,7 @@ Delete alias on collection name.

## Synonyms

The synonyms feature allows you to define search terms that should be considered equivalent, read more [here.](https://typesense.org/docs/0.23.1/api/synonyms.html)
The synonyms feature allows you to define search terms that should be considered equivalent, read more [here.](https://typesense.org/docs/0.24.0/api/synonyms.html)

### Create or update synonym

Expand Down Expand Up @@ -762,7 +762,7 @@ Delete synonym on synonym-name in collection.

### Typesense API Errors

Typesense API exceptions in the [Typesense-api-errors](https://typesense.org/docs/0.23.1/api/api-errors.html) spec.
Typesense API exceptions in the [Typesense-api-errors](https://typesense.org/docs/0.24.0/api/api-errors.html) spec.

| Type | Description |
|:------------------------------------------|:---------------------------------------------------------------------------|
Expand Down

0 comments on commit 468e05d

Please sign in to comment.