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
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
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
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
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
:microphone: ElixirConf 2026 - Call for Talks is open!
We’re heading to Chicago :united_states:
:round_pushpin: In person + virtual
:d...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex










Showing Posts 11 to 2- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
PhamDuyBaoTrung
Thanks guys
tduccuong
My bad, I did an
Enum.reducein theDbSrvmodule! Sorry for ur time! Everything is fine now.Thanks a lot!
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.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
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
Glad I could help!
tduccuong
confirmed that it works! thanks a lot!
tduccuong
Thanks a lot, I will try this and give feedback…
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 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?