Dan Smith created GEODE-3606:
--------------------------------
Summary: LuceneSerializer should take a LuceneIndex as a parameter
Key: GEODE-3606
URL: https://issues.apache.org/jira/browse/GEODE-3606
Project: Geode
Issue Type: Sub-task
Components: lucene
Reporter: Dan Smith
The LuceneSerializer API is currently specified as
{code}
LuceneSerializer {
Collection<Document> toDocuments(Object value);
}
{code}
Unfortunately, that means the serializer doesn't have access to the list of
fields and analyzers configured on the index. We should change the API to be
{code}
LuceneSerializer {
Collection<Document> toDocuments(LuceneIndex index, Object value);
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)