当前位置: 首页>>代码示例>>PHP>>正文


PHP Zend_Search_Lucene_Storage_File::writeBytes方法代码示例

本文整理汇总了PHP中Zend_Search_Lucene_Storage_File::writeBytes方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Search_Lucene_Storage_File::writeBytes方法的具体用法?PHP Zend_Search_Lucene_Storage_File::writeBytes怎么用?PHP Zend_Search_Lucene_Storage_File::writeBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Zend_Search_Lucene_Storage_File的用法示例。


在下文中一共展示了Zend_Search_Lucene_Storage_File::writeBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: addStoredFields

 /**
  * Add stored fields information
  *
  * @param array $storedFields array of Zend_Search_Lucene_Field objects
  */
 public function addStoredFields($storedFields)
 {
     if (!isset($this->_fdxFile)) {
         $this->_fdxFile = $this->_directory->createFile($this->_name . '.fdx');
         $this->_fdtFile = $this->_directory->createFile($this->_name . '.fdt');
         $this->_files[] = $this->_name . '.fdx';
         $this->_files[] = $this->_name . '.fdt';
     }
     $this->_fdxFile->writeLong($this->_fdtFile->tell());
     $this->_fdtFile->writeVInt(count($storedFields));
     foreach ($storedFields as $field) {
         $this->_fdtFile->writeVInt($this->_fields[$field->name]->number);
         $fieldBits = ($field->isTokenized ? 0x1 : 0x0) | ($field->isBinary ? 0x2 : 0x0) | 0x0;
         /* 0x04 - third bit, compressed (ZLIB) */
         $this->_fdtFile->writeByte($fieldBits);
         if ($field->isBinary) {
             $this->_fdtFile->writeVInt(strlen($field->value));
             $this->_fdtFile->writeBytes($field->value);
         } else {
             $this->_fdtFile->writeString($field->getUtf8Value());
         }
     }
     $this->_docCount++;
 }
开发者ID:alefernie,项目名称:intranet,代码行数:29,代码来源:SegmentWriter.php

示例2: addDocument

 /**
  * Adds a document to this segment.
  *
  * @param Zend_Search_Lucene_Document $document
  * @throws Zend_Search_Lucene_Exception
  */
 public function addDocument(Zend_Search_Lucene_Document $document)
 {
     $storedFields = array();
     foreach ($document->getFieldNames() as $fieldName) {
         $field = $document->getField($fieldName);
         $this->_addFieldInfo($field);
         if ($field->storeTermVector) {
             /**
              * @todo term vector storing support
              */
             throw new Zend_Search_Lucene_Exception('Store term vector functionality is not supported yet.');
         }
         if ($field->isIndexed) {
             if ($field->isTokenized) {
                 $tokenList = Zend_Search_Lucene_Analysis_Analyzer::getDefault()->tokenize($field->stringValue);
             } else {
                 $tokenList = array();
                 $tokenList[] = new Zend_Search_Lucene_Analysis_Token($field->stringValue, 0, strlen($field->stringValue));
             }
             $this->_fieldLengths[$field->name][$this->_docCount] = count($tokenList);
             $position = 0;
             foreach ($tokenList as $token) {
                 $term = new Zend_Search_Lucene_Index_Term($token->getTermText(), $field->name);
                 $termKey = $term->key();
                 if (!isset($this->_termDictionary[$termKey])) {
                     // New term
                     $this->_termDictionary[$termKey] = $term;
                     $this->_termDocs[$termKey] = array();
                     $this->_termDocs[$termKey][$this->_docCount] = array();
                 } else {
                     if (!isset($this->_termDocs[$termKey][$this->_docCount])) {
                         // Existing term, but new term entry
                         $this->_termDocs[$termKey][$this->_docCount] = array();
                     }
                 }
                 $position += $token->getPositionIncrement();
                 $this->_termDocs[$termKey][$this->_docCount][] = $position;
             }
         }
         if ($field->isStored) {
             $storedFields[] = $field;
         }
     }
     if (count($storedFields) != 0) {
         if (!isset($this->_fdxFile)) {
             $this->_fdxFile = $this->_directory->createFile($this->_name . '.fdx');
             $this->_fdtFile = $this->_directory->createFile($this->_name . '.fdt');
             $this->_files[] = $this->_name . '.fdx';
             $this->_files[] = $this->_name . '.fdt';
         }
         $this->_fdxFile->writeLong($this->_fdtFile->tell());
         $this->_fdtFile->writeVInt(count($storedFields));
         foreach ($storedFields as $field) {
             $this->_fdtFile->writeVInt($this->_fields[$field->name]->number);
             $fieldBits = ($field->isTokenized ? 0x1 : 0x0) | ($field->isBinary ? 0x2 : 0x0) | 0x0;
             /* 0x04 - third bit, compressed (ZLIB) */
             $this->_fdtFile->writeByte($fieldBits);
             if ($field->isBinary) {
                 $this->_fdtFile->writeVInt(strlen($field->stringValue));
                 $this->_fdtFile->writeBytes($field->stringValue);
             } else {
                 $this->_fdtFile->writeString($field->stringValue);
             }
         }
     }
     $this->_docCount++;
 }
开发者ID:BackupTheBerlios,项目名称:umlrecord,代码行数:73,代码来源:SegmentWriter.php


注:本文中的Zend_Search_Lucene_Storage_File::writeBytes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。