Discussing Features for Typesense Cloud Dashboard
TLDR Stephano expressed the need for a Typesense Cloud dashboard to manage collections. Jason confirmed its development, also including features like editing and deleting items. James and Mica added comments about API key management and self-hosted Typesense compatibility.
5
2
2
1
May 14, 2021 (31 months ago)
Stephano
07:01 PMJason
07:02 PM1
Stephano
07:02 PMStephano
07:03 PMStephano
07:03 PMJason
07:04 PM1
Stephano
07:04 PMJason
07:05 PMJason
07:05 PMStephano
07:06 PMStephano
07:07 PMStephano
07:07 PMStephano
07:07 PMJason
07:07 PMJason
07:08 PMStephano
07:08 PMJason
07:08 PMJason
07:09 PMStephano
07:09 PMStephano
07:09 PMJason
07:10 PMJason
07:11 PMStephano
07:12 PMStephano
07:12 PM1
Stephano
07:13 PMStephano
07:13 PMexport const importDocumentsReq = (collection: string, data: Array<any>) =>
axios({
method: 'post',
url: `${protocol}://${host}:${searchPort}/collections/${collection}/documents/import`,
headers,
data: toJSONL(data),
}).catch(throwSearch);
Stephano
07:14 PMimport
requestStephano
07:14 PMJason
07:14 PMStephano
07:14 PMStephano
07:14 PMJason
07:15 PMStephano
07:15 PMStephano
07:15 PMStephano
07:15 PMJason
07:16 PMJason
07:16 PM1
James
08:31 PMJason
08:49 PMJason
08:50 PMJames
08:51 PMA sandbox search/facet area would also be useful - test before production. Maybe performance suggestions
1
Jason
08:57 PM2
May 17, 2021 (30 months ago)
Mica
12:14 PMJason
06:09 PMJason
06:10 PM1
Jason
06:11 PMMica
06:17 PMJason
06:28 PMNot at the moment, because the dashboard has some hard dependencies on the cloud management console for auth, etc and it would take some effort to make it work with self-hosted Typesense. In full transparency though, Typesense Cloud is how we sustain our small bootstrapped team and the Typesense project, so we're hoping the dashboard gives people a reason to use Typesense Cloud... Still thinking this through, but that's our thought process at the moment.
> It would be awesome to be able to play with, since Typesense Cloud doesn't have a free tier
Typesense Cloud has a 30-day free tier on the 512MB config
1
James
06:29 PM1
May 26, 2021 (30 months ago)
Mica
09:05 AMIt's been a while I looked at the pricing I forgot there was a 30-day trial, that's cool! I'll just have to make sure when to activate it, haha.
Typesense
Indexed 2779 threads (79% resolved)
Similar Threads
Understanding and Implementing Typesense Dart Library with Flutter
Alexandro sought help with the Typesense Dart library. Jason explained that the library is in progress, discussed utilizing other HTTP libraries, and provided detailed instructions on utilizing Typesense with Flutter. Alexandro provided feedback on the Typesense UI and expressed interest in creating a tutorial video.
Resolving Issues with Scoped API Keys in Typesense with Golang
Suvarna had problems with generating and using scoped API keys in Typesense with Golang. Several bugs misleading the user were found and fixed by Kishore Nallan.
Revisiting Typesense for Efficient DB Indexing and Querying
kopach experienced slow indexing and crashes with Typesense. The community suggested to use batch import and check the server's resources. Improvements were made but additional support was needed for special characters and multi-search queries.
Handling Kinesis Stream Event Batching with Typesense
Dui had questions about how to handle Kinesis stream events with Typesense. Kishore Nallan suggested using upsert mode for creation/update and differentiating with logical deletion. After various discussions including identifying and resolving a bug, they finalized to introduce an `emplace` action in Typesense v0.23.
Resolving Typesense Server Connection with Correct API Keys and Paths
Rubai had trouble creating a working API key for Typesense and understanding number_hits versus num_documents. Jason provided clarification and correct code for generating a search-only API Key and using correct server configurations.