is there a way to create a full text search index using the java sdk just like other indexes? if so, it would be great if the documentation of it or any references to it is linked here.
Thanks in advance.
is there a way to create a full text search index using the java sdk just like other indexes? if so, it would be great if the documentation of it or any references to it is linked here.
Thanks in advance.
@PShri yes you can use the Java SDK to create an index BUT you need to pass the entire JSON payload as it would exist in the AI (just make sure you don’t have UUID or uuid in the payload else you are trying to do an index update).
I believe for java you would use:
SearchIndex idx = SearchIndex.fromJson​(indexDefJsonStr);
upsertIndex​(idx);
Best
Jon Strabala
Principal Product Manager - Server‌
How to construct the indexDefJsonStr
?
What to you mean by it would exist in the AI
?
I couldn’t locate any documentation regarding the creation of an FTS index via the Java SDK in the link you provided. Please advise if I overlooked something.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.