コード例 #1
0
 def search(self, query):
     """ 
     Executes a query over an existing index and returns the number of 
     relevant docs and an ordered list of search results.
     Input:
         query - string.
     Output:
         A tuple containing the number of relevant search results, and 
         a list of tweet_ids where the first element is the most relavant 
         and the last is the least relevant result.
     """
     searcher = Searcher(self._parser, self._indexer, model=self._model)
     return searcher.basic_search(query)