aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/match/DocumentDb.java
blob: f438d6017632d418e247e5b78663b8269423f5af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.search.match;

import com.yahoo.document.Document;
import com.yahoo.document.DocumentOperation;
import com.yahoo.search.Query;
import com.yahoo.search.Result;
import com.yahoo.search.Searcher;
import com.yahoo.search.searchchain.Execution;

/**
 * A searchable database of documents
 *
 * @author bratseth
 */
public class DocumentDb extends Searcher {

    /**
     * Put a document or apply an update to this document db
     */
    public void put(DocumentOperation op) {

    }

    /** Remove a document from this document db */
    public void remove(Document document) {

    }

    /** Search this document db */
    @Override
    public Result search(Query query, Execution execution) {
        Result r = execution.search(query);
        return r;
    }

}