本文整理汇总了Golang中github.com/balzaczyy/golucene/core/store.IndexInput.ReadBytes方法的典型用法代码示例。如果您正苦于以下问题:Golang IndexInput.ReadBytes方法的具体用法?Golang IndexInput.ReadBytes怎么用?Golang IndexInput.ReadBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/balzaczyy/golucene/core/store.IndexInput
的用法示例。
在下文中一共展示了IndexInput.ReadBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ReadTermsBlock
/* Reads but does not decode the byte[] blob holding
metadata for the current terms block */
func (r *Lucene41PostingsReader) ReadTermsBlock(termsIn store.IndexInput,
fieldInfo model.FieldInfo, _termState *BlockTermState) (err error) {
termState := _termState.Self.(*intBlockTermState)
numBytes, err := asInt(termsIn.ReadVInt())
if err != nil {
return err
}
if termState.bytes == nil {
// TODO over-allocate
termState.bytes = make([]byte, numBytes)
termState.bytesReader = store.NewEmptyByteArrayDataInput()
} else if len(termState.bytes) < numBytes {
// TODO over-allocate
termState.bytes = make([]byte, numBytes)
}
err = termsIn.ReadBytes(termState.bytes)
if err != nil {
return err
}
termState.bytesReader.Reset(termState.bytes)
return nil
}
示例2: readBytesRef
func readBytesRef(in store.IndexInput) ([]byte, error) {
length, err := asInt(in.ReadVInt())
if err != nil {
return nil, err
}
bytes := make([]byte, length)
if err = in.ReadBytes(bytes); err != nil {
return nil, err
}
return bytes, nil
}