This repository was archived by the owner on Jan 28, 2021. It is now read-only.
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
PilosaDriver: Implement AscendIndex and DescendIndex interfaces #211
Closed
Description
First of all, we need to modify a bit the existing interface to apply all the changes that we did on the base Index interface.
- Instead of accepting
key interface{}
we need to modify methods to usekey ...interface{}
. AscendRange(greaterOrEqual, lessThan interface{}) (IndexLookup, error)
becomesAscendRange(greaterOrEqual, lessThan []interface{}) (IndexLookup, error)
.
The same changes should be applied to DescendIndex interface.