lshensemble icon indicating copy to clipboard operation
lshensemble copied to clipboard

Can we add new domains into existing LSH indexers?

Open QthCN opened this issue 3 years ago • 3 comments

Hi, I've read the original great paper :thumbsup: and the repo's readme.md. Now I have a question: Can I add new domain records into an existing indexer?

For example if I create an indexer with 1 billion records using

index_eqd, err := lshensemble.BootstrapLshEnsembleEquiDepth(numPart, numHash, maxK, 
    len(domainRecords), lshensemble.Recs2Chan(domainRecords))

After the creation, I get 1 million new records again. Can I add them to the exist index_eqd? Or I can only create a new indexer with 1 billion + 1 million records.

QthCN avatar Jan 15 '21 10:01 QthCN