-
-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[16.0][ADD] Connector typesense #168
base: 16.0
Are you sure you want to change the base?
Conversation
0d1c09b
to
315789c
Compare
2bb016c
to
aad62fa
Compare
@sebastienbeau @simahawk @lmignon i would be happy to here some feedback from you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @MrTango for this contribution. I'd like to propose a first series of comments, but this seems to be going in the right direction. Great to have a new implementation for this new search engine which looks very interesting.
@@ -1,6 +1,6 @@ | |||
import setuptools | |||
|
|||
setuptools.setup( | |||
setup_requires=['setuptools-odoo'], | |||
setup_requires=["setuptools-odoo"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be modified.
@@ -1,6 +1,6 @@ | |||
import setuptools | |||
|
|||
setuptools.setup( | |||
setup_requires=['setuptools-odoo'], | |||
setup_requires=["setuptools-odoo"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be modified.
@@ -1,6 +1,6 @@ | |||
import setuptools | |||
|
|||
setuptools.setup( | |||
setup_requires=['setuptools-odoo'], | |||
setup_requires=["setuptools-odoo"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be modified.
@@ -1,6 +1,6 @@ | |||
import setuptools | |||
|
|||
setuptools.setup( | |||
setup_requires=['setuptools-odoo'], | |||
setup_requires=["setuptools-odoo"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be modified.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm pretty sure this came from the pre-commit command, is there something wrong in the config than?
@@ -1,6 +1,6 @@ | |||
import setuptools | |||
|
|||
setuptools.setup( | |||
setup_requires=['setuptools-odoo'], | |||
setup_requires=["setuptools-odoo"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should not be modified.
thx @lmignon for your commends, I'll have a look at them.
I would like to export more details of a product. |
The transformation to json is the responsibility of the serializer configured on your index. You can register your specific serializer. For example into the shoinvader project the |
thx for the tips, i found now also that it is using ir.export model and i can define the fields for the model there. |
There hasn't been any activity on this pull request in the past 4 months, so it has been marked as stale and it will be closed automatically if no further activity occurs in the next 30 days. |
Sorry for the delay, i'll continue to work on this next month. |
970c156
to
4ceaebd
Compare
This is now fully working implementation of the Typesense backend.
Typesence is a free API compatible alternative to Algolia and easier to use than Elastic Search or Solr.
@sebastienbeau this needs the other two (#166 #167) PR's merged.