I am using Jackrabbit in my project to store file and information.
And I have a custom node type:
<an = 'ApplyNode'>
<ani = 'ApplyNodeInfo'>
<anp = 'ApplyNodeProperty'>
[an:PolicyNode] > nt:hierarchyNode
- anp:PolicyId (string)
- anp:DepartmentId (string)
- anp:PolicyName (string)
- anp:DepartmentName (string)
- anp:AreaName (string)
- anp:IssuanceTime (date)
- anp:ValidTime (date)
- anp:Digest (String)
- anp:PolicyContent (string)
I know that Jackrabbit can use JCR-SQL to query information in nodes. But the JCR-SQL can't meet my needs such as Fuzzy Search and Word Frequency. So I wonder about how to use Lucene to query my information in nodes.
How can I use Lucene API to query in Jackrabbit?
Thx.