Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello, I would like to use Elasticsearch with uCommerce, is there a common approach how to replace ravendb to another search engine?
The easiest sulotion is to completely replace RavenDB as the search engine.
This can be done by implementing UCommerce.EntitiesV2.IRepository, and registering in the custom.config using the id "SearchRepository".
<component id="SearchRepository"service="UCommerce.EntitiesV2.IRepository, UCommerce"type="MyNamespace.MyElasticRepository, MyDll" />
This ensures that all changes are passed to MyElasticRepository through the SaveMany method.
Kind regards
Thomas Arvidsen
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
replace search engine
Hello, I would like to use Elasticsearch with uCommerce, is there a common approach how to replace ravendb to another search engine?
The easiest sulotion is to completely replace RavenDB as the search engine.
This can be done by implementing UCommerce.EntitiesV2.IRepository, and registering in the custom.config using the id "SearchRepository".
This ensures that all changes are passed to MyElasticRepository through the SaveMany method.
Kind regards
Thomas Arvidsen
is working on a reply...