當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Search_Lucene_Interface::hasTerm方法代碼示例

本文整理匯總了PHP中Zend_Search_Lucene_Interface::hasTerm方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Search_Lucene_Interface::hasTerm方法的具體用法?PHP Zend_Search_Lucene_Interface::hasTerm怎麽用?PHP Zend_Search_Lucene_Interface::hasTerm使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Search_Lucene_Interface的用法示例。


在下文中一共展示了Zend_Search_Lucene_Interface::hasTerm方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: optimize

 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     // Check, that index contains specified term
     if (!$index->hasTerm($this->_term)) {
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     return $this;
 }
開發者ID:hackingman,項目名稱:TubeX,代碼行數:8,代碼來源:Term.php

示例2: optimize

 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     $terms = $this->_terms;
     $signs = $this->_signs;
     foreach ($terms as $id => $term) {
         if (!$index->hasTerm($term)) {
             if ($signs === null || $signs[$id] === true) {
                 // Term is required
                 return new Zend_Search_Lucene_Search_Query_Empty();
             } else {
                 // Term is optional or prohibited
                 // Remove it from terms and signs list
                 unset($terms[$id]);
                 unset($signs[$id]);
             }
         }
     }
     // Check if all presented terms are prohibited
     $allProhibited = true;
     if ($signs === null) {
         $allProhibited = false;
     } else {
         foreach ($signs as $sign) {
             if ($sign !== false) {
                 $allProhibited = false;
                 break;
             }
         }
     }
     if ($allProhibited) {
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     if (count($terms) == 1) {
         // It's already checked, that it's not a prohibited term
         // It's one term query with one required or optional element
         $optimizedQuery = new Zend_Search_Lucene_Search_Query_Term(reset($terms));
         $optimizedQuery->setBoost($this->getBoost());
         return $optimizedQuery;
     }
     if (count($terms) == 0) {
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     $optimizedQuery = new Zend_Search_Lucene_Search_Query_MultiTerm($terms, $signs);
     $optimizedQuery->setBoost($this->getBoost());
     return $optimizedQuery;
 }
開發者ID:hackingman,項目名稱:TubeX,代碼行數:46,代碼來源:MultiTerm.php

示例3: hasTerm

 /**
  * Returns true if index contain documents with specified term.
  *
  * Is used for query optimization.
  *
  * @param Zend_Search_Lucene_Index_Term $term
  * @return boolean
  */
 public function hasTerm(Zend_Search_Lucene_Index_Term $term)
 {
     return $this->_index->hasTerm($term);
 }
開發者ID:abdulhadikaryana,項目名稱:kebudayaan,代碼行數:12,代碼來源:Proxy.php

示例4: optimize

 /**
  * Optimize query in the context of specified index
  *
  * @param Zend_Search_Lucene_Interface $index
  * @return Zend_Search_Lucene_Search_Query
  */
 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     // Check, that index contains all phrase terms
     foreach ($this->_terms as $term) {
         if (!$index->hasTerm($term)) {
             require_once 'Zend/Search/Lucene/Search/Query/Empty.php';
             return new Zend_Search_Lucene_Search_Query_Empty();
         }
     }
     if (count($this->_terms) == 1) {
         // It's one term query
         require_once 'Zend/Search/Lucene/Search/Query/Term.php';
         $optimizedQuery = new Zend_Search_Lucene_Search_Query_Term(reset($this->_terms));
         $optimizedQuery->setBoost($this->getBoost());
         return $optimizedQuery;
     }
     if (count($this->_terms) == 0) {
         require_once 'Zend/Search/Lucene/Search/Query/Empty.php';
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     return $this;
 }
開發者ID:MexinaD,項目名稱:SuiteCRM,代碼行數:28,代碼來源:Phrase.php

示例5: optimize

 /**
  * Optimize query in the context of specified index
  *
  * @param Zend_Search_Lucene_Interface $index
  * @return Zend_Search_Lucene_Search_Query
  */
 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     // Check, that index contains specified term
     if (!$index->hasTerm($this->_term)) {
         // require_once 'Zend/Search/Lucene/Search/Query/Empty.php';
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     return $this;
 }
開發者ID:crlang44,項目名稱:frapi,代碼行數:15,代碼來源:Term.php

示例6: optimize

 /**
  * Optimize query in the context of specified index
  *
  * @param Zend_Search_Lucene_Interface $index
  * @return Zend_Search_Lucene_Search_Query
  */
 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     // Check, that index contains specified term
     if (!$index->hasTerm($this->_term)) {
         require_once sfConfig::get('sf_lib_dir') . '/modules/search/lib/Lucene/Search/Query/Empty.php';
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     return $this;
 }
開發者ID:kotow,項目名稱:work,代碼行數:15,代碼來源:Term.php

示例7: optimize

 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     foreach ($this->_terms as $term) {
         if (!$index->hasTerm($term)) {
             return new Zend_Search_Lucene_Search_Query_Empty();
         }
     }
     if (count($this->_terms) == 1) {
         $optimizedQuery = new Zend_Search_Lucene_Search_Query_Term(reset($this->_terms));
         $optimizedQuery->setBoost($this->getBoost());
         return $optimizedQuery;
     }
     if (count($this->_terms) == 0) {
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     return $this;
 }
開發者ID:Blu2z,項目名稱:implsk,代碼行數:17,代碼來源:Zend_Search_Lucene.php

示例8: optimize

 /**
  * Optimize query in the context of specified index
  *
  * @param Zend_Search_Lucene_Interface $index
  * @return Zend_Search_Lucene_Search_Query
  */
 public function optimize(Zend_Search_Lucene_Interface $index)
 {
     $terms = $this->_terms;
     $signs = $this->_signs;
     foreach ($terms as $id => $term) {
         if (!$index->hasTerm($term)) {
             if ($signs === null || $signs[$id] === true) {
                 // Term is required
                 require_once sfConfig::get('sf_lib_dir') . '/modules/search/lib/Lucene/Search/Query/Empty.php';
                 return new Zend_Search_Lucene_Search_Query_Empty();
             } else {
                 // Term is optional or prohibited
                 // Remove it from terms and signs list
                 unset($terms[$id]);
                 unset($signs[$id]);
             }
         }
     }
     // Check if all presented terms are prohibited
     $allProhibited = true;
     if ($signs === null) {
         $allProhibited = false;
     } else {
         foreach ($signs as $sign) {
             if ($sign !== false) {
                 $allProhibited = false;
                 break;
             }
         }
     }
     if ($allProhibited) {
         require_once sfConfig::get('sf_lib_dir') . '/modules/search/lib/Lucene/Search/Query/Empty.php';
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     /**
      * @todo make an optimization for repeated terms
      * (they may have different signs)
      */
     if (count($terms) == 1) {
         // It's already checked, that it's not a prohibited term
         // It's one term query with one required or optional element
         require_once sfConfig::get('sf_lib_dir') . '/modules/search/lib/Lucene/Search/Query/Term.php';
         $optimizedQuery = new Zend_Search_Lucene_Search_Query_Term(reset($terms));
         $optimizedQuery->setBoost($this->getBoost());
         return $optimizedQuery;
     }
     if (count($terms) == 0) {
         require_once sfConfig::get('sf_lib_dir') . '/modules/search/lib/Lucene/Search/Query/Empty.php';
         return new Zend_Search_Lucene_Search_Query_Empty();
     }
     $optimizedQuery = new Zend_Search_Lucene_Search_Query_MultiTerm($terms, $signs);
     $optimizedQuery->setBoost($this->getBoost());
     return $optimizedQuery;
 }
開發者ID:kotow,項目名稱:work,代碼行數:60,代碼來源:MultiTerm.php


注:本文中的Zend_Search_Lucene_Interface::hasTerm方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。