Changes between Version 1 and Version 2 of XPATH


Ignore:
Timestamp:
Apr 17, 2009, 1:51:39 AM (15 years ago)
Author:
heikki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • XPATH

    v1 v2  
    1010=== Introduction ===
    1111
    12 XPATH is a language to precisely select a set of nodes in an XML document.
     12XPATH is a language to precisely select a set of nodes in an XML document. It is also sometimes used to address certain parts of Java object graphs. One of the requirements for the ebRIM project is to support XPATH queries in OGC Filters.
     13
     14
     15=== Issues ===
     16
     17It seems that not often, XPATH queries are used on a Lucene index. We do not have all ebRIM data in memory, therefore we cannot simply evaluate XPATH queries against complete ebRIM documents. This suggests that the best option is to evaluate XPATH queries against the Lucene index. How should we go about doing that ?
     18