You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,6 @@ Cursor-based pagination works with [TypeORM Query Builder](https://typeorm.io/#/
12
12
13
13
> If this project is helpful to you, I truly appreciate you all for your stars ⭐⭐⭐ and contributions 💪💪💪.
14
14
15
-
## Recommend Upgrading
16
-
17
-
Previous version use [TypeORM](https://typeorm.io/#/select-query-builder/using-pagination)`.take()` to retrive paging data, the TypeORM will fetch entity id first, then generating second query and map first query results ids to `IN (...)` query, this may lead to significant performance losses with a large number of first results.
18
-
19
-
The version `v0.3.0+` uses inner join on sub query entity table with paging parameters and limit, under this approach, the TypeORM will not generate a super long `IN (...)` query.
0 commit comments