andr <- andromeda(cars = cars)
createIndex(andr$cars, "speed")
# Will be faster now that speed is indexed:
andr$cars %>%
filter(speed == 10) %>%
collect()
removeIndex(andr$cars, "speed")
close(andr)
Run the code above in your browser using DataLab