Hi guys, in the documentation we can find « Due t...
# community-help
l
Hi guys, in the documentation we can find « Due to performance reasons, Typesense limits searches to a maximum of 500 results. » Is there a way to change this limit and set for example 10,000 ?
j
@Loïc This was only a limitation in 0.11 and 0.12 versions of Typesense. This has no longer been the case since then (we're on v0.22 currently)
👍 1
l
Thank you @Jason Bosco !
👍 1
@Jason Bosco To store and and retrieve an object or list of objects, how should I build the schema for
prices
which is of type
List<Price>
Example with object
Price
circleId String price int
Copy code
{
  "ownerId": "123",
  "prices": [
    {
      "circleId": "String",
      "price": 123
    }
  ]
}
I found this in the documentation https://typesense.org/docs/0.22.2/api/collections.html#indexing-nested-fields. Is it available now it the latest version?
j
It's not yet available in the latest version... We plan to tackle it in the next 3-4 months. So you would have to flatten it for now, like in the link you shared