Jason Bosco

Results 18 issues of Jason Bosco

We're looking to build a showcase to show off the different uses of Typesense in production. As of Oct 23, 2020, we have ~18K Docker pulls - if you're one...

announcement

This new API endpoint will allow you to store preset values for all search parameters, instead of having to specify ech search parameter value in code when calling the search...

Related to: https://github.com/typesense/typesense/issues/677#issuecomment-1200104946

This PR enables [page priority](https://www.sitemaps.org/protocol.html#prioritydef) to be specified on a per-page basis via front matter like this: ``` --- sitemap: priority: 0.8 --- ``` Example usage: https://github.com/typesense/typesense-website/commit/9edfa3c38c44c1105b438f9e2c77aff6e4bf972a#diff-fc07bc2b3fddf5766c06ca5dc2d4e755e956941ef1bca1a34e5e5f0f73979d66R1-R5

Related to #931. Starting this PR to collaborate.

needs documentation

Hi there, I work on [Typesense](https://typesense.org/) which is an open source, in-memory search engine that supports [vector search](https://typesense.org/docs/0.24.0/api/vector-search.html). Would you be open to me contributing an integration with Typesense as...

👋 Following up from my email conversation with @logankilpatrick, I've added an example of how to use [Typesense](https://typesense.org) as a vector datastore and implement similarity search.

This PR adds support for [Typesense](https://github.com/typesense/typesense), an open source search engine with vector search. I've followed the Pinecone implementation closely and tested all the API endpoints locally. Resolves #34.

```javascript client .collections(collectionName) .documents() .import(formattedDocs, { action: 'upsert' }); ``` ```bash /node_modules/typesense/src/Typesense/Documents.ts:346 .map((r) => JSON.parse(r)) as ImportResponse[]; ^ SyntaxError: Unexpected end of JSON input at JSON.parse () at /node_modules/typesense/src/Typesense/Documents.ts:346:26 at...

bug
fix-available

```bash export TYPESENSE_API_KEY=xyz mkdir $(pwd)/typesense-data docker run -p 8108:8108 \ -v$(pwd)/typesense-data:/data typesense/typesense:0.25.2 \ --data-dir /data \ --api-key=$TYPESENSE_API_KEY \ --enable-cors ``` ```bash ➜ ~ curl "http://localhost:8108/collections" \ -X POST \ -H...

bug
nested