How to index list of strings in Hibernate search?
i tried like this
@Field(index = Index.YES, analyze = Analyze.NO, store = Store.YES, analyzer = @Analyzer(definition = "customanalyzer_query"))
@ElementCollection(fetch = FetchType.EAGER)
private Set<String> hashedTagList;
I'm getting error while committing new object.
I'm using Hibernate ogm with mongodb