3

以下のように MarkLogic に保存されたドキュメントがあります。

<?xml  version="1.0" encoding="UTF-8"?>
<user>
  <userName>Vikram</userName>
  <password>password</password>
  <firstName>Vikram</firstName>
  <lastName>Swaminathan</lastName>
  <emailAddress>vikram@gmail.com</emailAddress>
</user>

非推奨 (KeyValueQueryDefinition) で動作するコードは次のようになります。

    // create a manager for searching
    QueryManager queryMgr = client.newQueryManager();

    KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
    query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");

    // create a handle for the search results
    SearchHandle resultsHandle = new SearchHandle();

    // run the search
    queryMgr.search(query, resultsHandle);        

    // Get the list of matching documents in this page of results
    MatchDocumentSummary[] results = resultsHandle.getMatchResults();

    // Iterate over the results
    for (MatchDocumentSummary result: results) {

        // get the list of match locations for this result
        MatchLocation[] locations = result.getMatchLocations();
        System.out.println("Matched "+locations.length+" locations in "+result.getUri()+":");

        // iterate over the match locations
        for (MatchLocation location: locations) {

            // iterate over the snippets at a match location
            for (MatchSnippet snippet : location.getSnippets()) {
                boolean isHighlighted = snippet.isHighlighted();

                if (isHighlighted)
                    System.out.print("[");
                System.out.print(snippet.getText());
                if (isHighlighted)
                    System.out.print("]");
            }
            System.out.println();
        }
        System.out.println();
    }
}

そして、私が得ている出力は次のとおりです。

Matched 1 locations in user/vikram:
[vikram@gmail.com]

KeyValueQueryDefinition以下のリンクの助けを借りて、最新バージョンで非推奨になっている新しい Marklogic 9 バージョンで動作するようにしました。

https://docs.marklogic.com/guide/relnotes/chap4#id_22988

ここでKeyValueQueryDefinition コードを変更するバリアントはありますか

 KeyValueQueryDefinition query = queryMgr.newKeyValueDefinition();
        query.put(queryMgr.newElementLocator(new QName("emailAddress")),"vikram@gmail.com");

以下のリンクで説明されているように、QBE を使用してドキュメントを検索します。

https://docs.marklogic.com/guide/java/searches#id_69351

これにアプローチする方法に関する提案はありますか??

4

1 に答える 1