tduccuong
Hi all,
I am new to Elixir and are using this lib GitHub - elixir-mongo/mongodb: MongoDB driver for Elixir · GitHub to work with MongoDB. The doc says it has “Streaming cursor” feature, but the source code implements only Enumerable protocol for the cursor returned by the Mongo.find function.
There is no doc about a cursor API, or do I miss something?
Thanks a lot!
Trending in Announcing
You may know https://ui.shadcn.com/, a UI component library for React. I really love it’s design style and components. I’ve built some co...
New
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
The repo is at GitHub - cyberchitta/openai_ex: Community maintained Elixir library for OpenAI API · GitHub.
Docs are at OpenaiEx User Gu...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
The Chelekom project is a library of Phoenix and LiveView components generated via Mix tasks to fit developer needs seamlessly.
One of i...
New
Phoenix components for pagination, sortable tables and filter forms with Flop and (optionally) Ecto.
pagination
cursor pagination
sorta...
New
Please say hi to a new lib, Astro that aims to deliver easy-to-consume astronomy calculations of practical use. For now it only calculat...
New
Other Trending Topics
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Fly’s CEO posted this recently - Turn And Face The Strange · The Fly Blog
It says that Fly is going all-in on sprites, which is a worry ...
New
We’re evaluating API mocking tools for OpenAPI-based projects and would love to hear what other teams are using.
We’re particularly inte...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Is there a word for the ~> symbol used in Version strings?
Do you also just call it a Squiggle Arrow™ ?!
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex











First 10 of 11 Posts
Ankhers
What is it you are trying to accomplish?
tduccuong
Thanks a lot for answering!
So, I want pagination in my app. In my website landing page, i would show first 10 items of a search query, then provide buttons to view next / previous 10 items…
I did not find an API that allows me to do that in the driver? E.g., something like:
Mongo.find_next(.., cursor, ...)Or if there is, could u pls show me?
Ankhers
Since this is for a website, you would not have access to the same cursor between requests. For something like this, you would structure your query like
Then you are free to render the results as you see fit.
tduccuong
Thanks a lot, I will try this and give feedback…
tduccuong
confirmed that it works! thanks a lot!
Ankhers
Glad I could help!
tduccuong
When use this method with
sort: %{<field>: <order>}option, it seems the sorting is not done in the entire result space but only on the returned batch, unless I setpage = 0andlimit = <number of all items in DB>E.g., say I have 10 items in DB labeled 1 → 10. Say an unsorted query, with
limit = 10, returnsNow if I set
limit = 5, and sort increasing order, then withpage = 0, 1, the two returned batches are:and
What I want are:
and
Could u pls show me the way to achieve that, if there is?
Thanks a lot!
Ankhers
I am not seeing the same behaviour.
Would you be able to show something similar to what I just did there? If you can, I may be able to help figure out what is going wrong.
tduccuong
hmm I noticed that, for every returned batch, if I do
Enum.reversethe list, then the order is correct as I wanted.Sorry I don’t have an example right now and cannot share data, but here is two snippets with the later does what I want:
and
The
DbSrvmodule is just a convenient wrapper aroundMongomodule of yours.tduccuong
My bad, I did an
Enum.reducein theDbSrvmodule! Sorry for ur time! Everything is fine now.Thanks a lot!