We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
say I get a stream of data: {machineCode: "", lat: , lon: } And I want to display a count of such datums per machineCode.
Is there a way to efficiently get all the unique machine codes? or should I just keep track of them while inserting data?
The text was updated successfully, but these errors were encountered:
No built-in feature in column for this, but there's 2 ways I can think of to solve this problem:
You can do both during insertion or a range query that iterates over all elements.
Sorry, something went wrong.
thanks, I went with the second method, but that leaves me with having to do the range query when restoring state from a snapshot :-(
No branches or pull requests
say I get a stream of data: {machineCode: "", lat: , lon: }
And I want to display a count of such datums per machineCode.
Is there a way to efficiently get all the unique machine codes? or should I just keep track of them while inserting data?
The text was updated successfully, but these errors were encountered: