Want to master Clean Architecture? Go here: bit.ly/3PupkOJ Want to unlock Modular Monoliths? Go here: bit.ly/3SXlzSt
@arthurasimpson8 ай бұрын
Another problem is IDs with (unknown) gaps in between. Here, finding the cursor value becomes even more difficult or even impossible (this is precisely the reason why the database cannot do an index seek, but has to count lines by scanning). A small addition from me, however: this technique is wonderful for updating or deleting in large tables. You can update/delete rows in blocks by working with TOP and WHERE ID < x in a loop.
@MilanJovanovicTech8 ай бұрын
Nice addition to the discussion, thanks
@arthurasimpson8 ай бұрын
@@MilanJovanovicTech You're welcome! I discovered you on LinkedIn and saw that the videos are even better 😉
@emma-vi9 ай бұрын
Hi there, great videos btw. I am just wondering, how do you know that the cursor = 200400 corresponds to the page that you are trying to access? thanks
@MilanJovanovicTech9 ай бұрын
Just a setup after checking the DB - helps with benchmarks
@emma-vi9 ай бұрын
@@MilanJovanovicTech but I mean how can apply this on a table where I don’t know which number means any page? For example I have a table where can have logical deleted rows so the number itself can’t be associated to a calculation of a page
@osman34049 ай бұрын
@@emma-vithe app or the search screen logic will need to cache the value to use as the cursor.
@emma-vi9 ай бұрын
@@osman3404 but if you add an order or a filter that doesn't work anymore right? because the cursor uses a number as an anchor to calculate the next rows
@phugia9637 ай бұрын
he just doesn't know it and can't provide you the answer. In fact, identifying where the cursor is for correct page is very tricky and sometime impossible if you have id as guid or non sequential id. Normally the only situation I can see we could leverage cursor pagination is infinite scroll, where we would know next exact cursor position. For normal paging that allow user to arbitrarily go to any page, cursor won't work! And the way he presented his example is confusing enough for your question to arise :D
@mattmarkus48689 ай бұрын
Nice! Thank you, perhaps a naive question but you picked an id to use as your cursor. How would you know what to use as your cursor in a real life scenario? Maybe I misunderstood something.
@MilanJovanovicTech9 ай бұрын
It should be a column that's sortable in creation order
@AlexanderRadchenko9 ай бұрын
Order by will break cursor pagination, for example order by name
@MilanJovanovicTech9 ай бұрын
Yep, cursor pagination sucks if you need random sorting
@AnatholyBonder9 ай бұрын
Just add an expression to the arguments to detect the order field and then use EF method when building the query.
@AnatholyBonder9 ай бұрын
Ah, and of course made the method generic :)
@drhdev9 ай бұрын
That won’t fix the underlying database call though and the reasoning behind this video. You will need good covering indexes
@orterves9 ай бұрын
I think your cursor example needs an orderBy
@MilanJovanovicTech9 ай бұрын
The PK is already sorted, so it wouldn't have an effect. But it can help if using a non-indexed column. Or traversing the index in the opposite order.
@ConradAkunga9 ай бұрын
How practical is cursor pagination in a real-life scenario given: 1. You almost always want to allow the data to be sorted by user-defined criteria - order date, order value, etc. 2. Once real-life scenarios such as order deletion/cancellation/reversals start to occur the id becomes very brittle, especially when you add a where clause to the select e.g. you want to page all non-cancelled, non-reversed orders
@MilanJovanovicTech9 ай бұрын
It's not for general purpose pagination, but fits perfectly for use cases where you need an infinite-scroll solution. Examples could be social media timelines, e-commerce catalogs, e-mail, etc.
@dsvechnikov9 ай бұрын
In theory, you can add a map of ids corresponding to pages. You then will need to periodically update it and whenever querying a page, query an offset (number of records added since last map update) to add this offset to the record id from the map. This will add ability to go to arbitrary page (if you use sequential numeric ids and sort paged records by that id). May perform better than offset...limit if paged table contains many more records.
@MilanJovanovicTech9 ай бұрын
That would be a mess to maintain for each user and with records being added and removed
@dsvechnikov9 ай бұрын
@@MilanJovanovicTech it sure would be. Not so much if you don't need to maintain maps for different users (all users see the same list of records and therefore have the same pages) but still quite messy. And I completely forgot about the removal of records being a thing... It could be accounted for relatively easily as part of the periodical map updates, but between updates some pages would intersect. OR there could be a list of records removed since last map update which can be used to calculate proper offsets when needed... But anyway, it is indeed a very complicated and messy solution that wouldn't make sense for probably anyone
@heischono4917Ай бұрын
Thank you very much. It's nice to know that I've done everything right, even without having seen this video beforehand. I am currently working with realtime data, and saving the last ID helps to keep the next query fast. However, I find your example with the fixed value 200400 somewhat misleading. It's completely ok for benchmarks, but in real life I don't even know which ID I have as a starting point at the beginning. The video would have benefited from providing a practical approach to this. I personally know what to do, but @emma-vi's question shows the need for clarification.
@MilanJovanovicTechАй бұрын
Of course, of course... I needed something stable for the benchmark. In a real world example, we'd fetch the first page, and then use the ID of the last record as the cursor.
@denm88229 ай бұрын
OData is the best solution for me , for about a decade
@MilanJovanovicTech9 ай бұрын
I never had a chance to use it
@FluffyBearInSpace9 ай бұрын
Is there a concept to keep page id's in cache to use them as cursor boundries to speed up the queries? I would never hard code an Id like this, but I can imaging to have these id's collected for instance every day to cache them.
@MilanJovanovicTech9 ай бұрын
It's obviously just for demo purposes 😅 Typically you will save this value on the client side
@vigneshveeramani39349 ай бұрын
I would like to know about dapper with clean architecture. Can you provide video for proper implementation.
@MilanJovanovicTech9 ай бұрын
I touched on that in a recent CQRS video
@salmanshafiq81519 ай бұрын
Wow ❤ Does it work for Guid primary key?
@MilanJovanovicTech9 ай бұрын
Not really, you need something you can sort on that also matches when the records were created. Otherwise, you might get a different result each time as more records are added/removed from the DB.
@ЗамирЗакиев-т6д9 ай бұрын
cursor pagination is faster, but you cannot order the data by some column except id, so if user want to order data by some column better using cursor, but if he want sort data then better is offset pagination
@MilanJovanovicTech9 ай бұрын
Yes
@akilarsath64993 ай бұрын
Then which sorting should be used
@MsGordonbennett9 ай бұрын
Great video. Thanks Milan
@MilanJovanovicTech9 ай бұрын
My pleasure!
@jeanpatrick24126 ай бұрын
Great Video Milan. Is there a way for this to work with Strongly Typed Ids?
@MilanJovanovicTech6 ай бұрын
Yes, but too cumbersome for my liking. The juice ain't worth the squeeze.
@rouensk9 ай бұрын
I would not call this cursor pagination - it's just selecting by clustered index. Cursor pagination is technique that is actually using database feature CURSOR, by defining query (where you can actually use ORDER BY with other expressions than just Id) and then FETCH pages.
@MilanJovanovicTech9 ай бұрын
Nope, this is cursor/keyset pagination. A DB cursor is something else.
@bogdanb9049 ай бұрын
I'm guessing cursor pagination would not work when you throw in filtering.
@MilanJovanovicTech9 ай бұрын
Nope, works fine with filtering. Doesn't work with random sort orders.
@petropzqi9 ай бұрын
What if your ID is not auto incremented or if it's a guid?
@MilanJovanovicTech9 ай бұрын
Then you'd need another auto-incrementing column (or sortable column at least) - a good example is a CreatedOnUtc column
@afshin71049 ай бұрын
Great video But what if our Id is Guid how do you do it in cursor pagination
@MilanJovanovicTech9 ай бұрын
You need something else that's sortable to pair it with a GUID. An auto-incrementing integer, CreatedOn column, etc.
@Ariel-yv8uw9 ай бұрын
What theme do you use in your Visual Studio? It's fire Man
@MilanJovanovicTech9 ай бұрын
It's ReSharper syntax highlighting
@drhdev9 ай бұрын
On the second example, your CountAsync should be before your pagination. If you kept it like it is you don’t need 2 roundtrips lol.
@MilanJovanovicTech9 ай бұрын
How would that change the number of round trips?
@drhdev9 ай бұрын
@@MilanJovanovicTech rewatch your video at 4:30. It’s easy to overlook. You wrote countasync after tolistasync and said it takes 2 trips. You accidentally called countasync on the query instead of before paging. If you are indeed doing what you are coding one round trip was enough but I’m guessing you didn’t mean to call count on the paginated results. For real pagination you should use countasync on the entire filtered query set then call tolistasync with the pagination.
@maziyar.m9 ай бұрын
Woow God bless you brother
@MilanJovanovicTech9 ай бұрын
Thank you
@ttolst9 ай бұрын
Interesting that the final version will not work with the UI shown in the thumbnail 😉 If i was in a situation where a primitive unsortable next page implementation was needed, my data would not be in a sql db anyway.
@MilanJovanovicTech9 ай бұрын
It would work - so long as you go to thew next/prev page only 😁
@harundurakoglu34149 ай бұрын
Where do you find this kind of information?
@MilanJovanovicTech9 ай бұрын
Research
@MohammedHassan-ug4cu9 ай бұрын
how this approach will work if the Id is Guid
@bobek80309 ай бұрын
it wont
@MilanJovanovicTech9 ай бұрын
You need another column you can sort by time of creation, like a CreatedOnUtc column
@Chris-zb5nm9 ай бұрын
But why on earth would anybody want to have a pagination that filters by ID? A pagination means: Where(any condition) & OrderBy(any column) & any page & any size
@MilanJovanovicTech9 ай бұрын
Think about your Gmail inbox. You see the latest 50 emails, and can navigate to the next page, etc. The emails are sorted in the order that they arrive to your inbox - i.e. creation order. Which is exactly what an integer PK gives you - creation order.
@matiasmiraballes92409 ай бұрын
@@MilanJovanovicTech At which moment do you decide to create/update the cursors in order to fetch the latest 50 emails? on each email arrival do you delete the cursor for said user, recalculate which Id should the cursor have to be the 51st element, then offset all the records from that point (by deleting and recreating them with Id+1) to make room for the cursor?. yes, you could potentially use a step of 2 or bigger so you always have room for creating cursors, but there is also the point of this cursor being hardcoded in the code. Seems very unwieldy at the time of updating the cursors.
@antonmartyniuk9 ай бұрын
@@matiasmiraballes9240you don't need to update a cursor each time. All you need to do is order emails by id descending, and create a cursor pagination backwards: where Id < x
9 ай бұрын
But how do you know the cursor initially?
@MilanJovanovicTech9 ай бұрын
For a number: 0, or max(int)/max(long) Basically, the default value of a cursor where any other values is greater or smaller.
@abellima35019 ай бұрын
ok, great, but what if it was a different order, for example, an order by price?
@MilanJovanovicTech9 ай бұрын
Then you'd need an index on that column, and a way to solve duplicates.
@pokebrick49605 ай бұрын
The cursor pagination is faster but not good to use in combination with guis ids, filtering, ordering and searching
@MilanJovanovicTech5 ай бұрын
Agreed
@osman34049 ай бұрын
What if the ID used as cursor was a Guid and not a sequential id ?
@MilanJovanovicTech9 ай бұрын
Wont' work in that case, you need something that's sortable + grows in "creation order" If you have to use a Guid, you'd need another column to handle the creation order part. A good solution could be a CreatedOn column
@Leobraic9 ай бұрын
What about if the Id is a Guid? The cursos approach still works?
@MilanJovanovicTech9 ай бұрын
It "works" in theory - you can sort a Guid, right? But it's practically useless, because a Guid is random. You want something that is increasing with creation time, like a numeric PK does.
@Leobraic9 ай бұрын
@@MilanJovanovicTech I this scenario what approach you suggest? When we only have Guids as Keys?
@SuperAwdawdawdawd9 ай бұрын
@@Leobraic Sort by creating date, and then use Skip().Take()
@NoorAlam-ht4jd9 ай бұрын
What abt if more than one filter is there?
@MilanJovanovicTech9 ай бұрын
Filters aren't problematic for this approach. However, random sorting order is
@ChuDevMoHon9 ай бұрын
Cursor is the ID of the last record in Sale table?
@mokeev19959 ай бұрын
Nope. It's an ID of some specific record in the table (near the end of this table, if I understand Milan correctly).
@MilanJovanovicTech9 ай бұрын
The ID of the last record that you READ in the current page - and it denotes the start of the next page
@AlexanderLoshkaryov9 ай бұрын
@@MilanJovanovicTech , Thanks Milan. Wouldn't it be more readable if the "Last()" used instead of [^1]? But I appreciate the approach shown, from my understanding it'll do the job working with arrays.
@rade60639 ай бұрын
Great video Milan
@MilanJovanovicTech9 ай бұрын
Thanks a lot!
@myti16179 ай бұрын
@MilanJovanovicTech9 ай бұрын
👋
@baebcbcae9 ай бұрын
That's a LIKE
@MilanJovanovicTech9 ай бұрын
Thank you! :)
@DavidSmith-ef4eh3 ай бұрын
The naive version would be faster if you only had 10 rows in the table...🤣
@MilanJovanovicTech3 ай бұрын
Everything is fast with a small database
@forgeteverythingelse9 ай бұрын
that's not pagination at all :)
@MilanJovanovicTech9 ай бұрын
What is it then?
@forgeteverythingelse9 ай бұрын
just an approach to bring nearby items, there is no pagenumber @@MilanJovanovicTech