summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/search/match/DocumentDb.java
blob: f4be68613642f39d56f03b47da9c775649126c92 (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 2016 Yahoo Inc. 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  <a href="mailto:bratseth@yahoo-inc.com">Jon Bratseth</a>
 */
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;
    }

}