blob: 372bcb1132725523619733ccf03c3b474c155e8f (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
namespace Elastica;
/**
* Elastica searchable interface
*
* @category Xodoa
* @package Elastica
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
*/
interface SearchableInterface
{
/**
* Searches results for a query
*
* TODO: Improve sample code
* {
* "from" : 0,
* "size" : 10,
* "sort" : {
* "postDate" : {"reverse" : true},
* "user" : { },
* "_score" : { }
* },
* "query" : {
* "term" : { "user" : "kimchy" }
* }
* }
*
* @param string|array|\Elastica\Query $query Array with all query data inside or a Elastica\Query object
* @return \Elastica\ResultSet ResultSet with all results inside
*/
public function search($query = '', $options = null);
/**
* Counts results for a query
*
* If no query is set, matchall query is created
*
* @param string|array|\Elastica\Query $query Array with all query data inside or a Elastica\Query object
* @return int number of documents matching the query
*/
public function count($query = '');
/**
* @param \Elastica\Query $query
* @param array $options
* @return \Elastica\Search
*/
public function createSearch($query = '', $options = null);
}
|