• Robert Griesemer's avatar
    suffixarray: a package for creating suffixarray-based indexes · 22974fbe
    Robert Griesemer authored
    This is a replacement for pending CL 2219042. It only contains
    the raw suffixarray functionality with two methods:
    
    - New       create a new index from some data
    - Lookup    lookup occurences of a bytes slice in the data
    
    Any other functionality (dealing with multiple data sets and
    the corresponding position lists) is generic and doesn't have
    to be part of this package.
    
    Known performance bug: This implementation works fine for data sets
    up to several megabytes as long as it doesn't contain very long
    contiguous sequences of equal bytes. For instance, index creation for
    all .go files under GOROOT (250KLOCs, approx. 9MB) takes ~50s on
    2.66 GHz Intel Xeon as long as test/fixedbugs/257.go is excluded.
    With that file, index creation times takes several days. 257.go contains
    a string of 1M smiley faces.
    
    There are more sophisticated suffixarray creation algorithms which
    can handle very long common prefixes. The implementation can be
    updated w/o the need to change the interface.
    
    R=rsc, r, PeterGo
    CC=golang-dev
    https://golang.org/cl/2265041
    22974fbe
Name
Last commit
Last update
..
archive/tar Loading commit data...
asn1 Loading commit data...
big Loading commit data...
bufio Loading commit data...
bytes Loading commit data...
cmath Loading commit data...
compress Loading commit data...
container Loading commit data...
crypto Loading commit data...
debug Loading commit data...
ebnf Loading commit data...
encoding Loading commit data...
exec Loading commit data...
exp Loading commit data...
expvar Loading commit data...
flag Loading commit data...
fmt Loading commit data...
go Loading commit data...
gob Loading commit data...
hash Loading commit data...
html Loading commit data...
http Loading commit data...
image Loading commit data...
index/suffixarray Loading commit data...
io Loading commit data...
json Loading commit data...
log Loading commit data...
math Loading commit data...
mime Loading commit data...
net Loading commit data...
netchan Loading commit data...
nntp Loading commit data...
os Loading commit data...
patch Loading commit data...
path Loading commit data...
rand Loading commit data...
reflect Loading commit data...
regexp Loading commit data...
rpc Loading commit data...
runtime Loading commit data...
scanner Loading commit data...
sort Loading commit data...
strconv Loading commit data...
strings Loading commit data...
sync Loading commit data...
syscall Loading commit data...
syslog Loading commit data...
tabwriter Loading commit data...
template Loading commit data...
testing Loading commit data...
time Loading commit data...
unicode Loading commit data...
unsafe Loading commit data...
utf16 Loading commit data...
utf8 Loading commit data...
websocket Loading commit data...
xml Loading commit data...
Makefile Loading commit data...
deps.bash Loading commit data...