@TheNeuralBit One way to optimize this search is to store the result of 
`search.valueOf()` at the start and apply a view that doesn't convert the raw 
bytes to dates. We can move this function to be an override of `indexOf()` on 
the DateVector itself, then it can look like this:
```ts
class DateVector {
    indexOf(search: Date) {
        return this.asEpochMilliseconds().indexOf(search.valueOf());
    }
}
```

[ Full content available at: https://github.com/apache/arrow/pull/2445 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to