medienreaktor / Medienreaktor.Meilisearch

Integrates Meilisearch into Neos
Other
9 stars 2 forks source link

Some properties are indexed twice #6

Open jonnitto opened 1 month ago

jonnitto commented 1 month ago

Following properties are indexed twice, is this on purpose?

danielkestler commented 4 weeks ago

One may argue about that, but it is indeed on purpose, see README:

You will see that some properties are indexed twice, like _path and __path, _nodeType and __nodeType. This is due to the different privacy of these node properties:

  • _*-properties are default Neos node properties that are private to Neos (and may change)
  • __*-properties are private properties that are required for the Meilisearch-integration

We have to make sure that our required properties are always there, so we better index them separately.