Why does Where() generate a lot of GC? #2437
Unanswered
CodingOctocat
asked this question in
Q&A
Replies: 2 comments 1 reply
-
I'm already using Ef Core/Sqlite and it performs well, I find LiteDb using ToList, Count performs poorly and generates a lot of GC activity, I don't think there's anything wrong with my code, it's just a simple query and count. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Have you tried creating indexes? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've found that whenever the
Where()
method is called, even with the simplest of conditions, it will generate a lot of GC.My data size is about 15,000 rows.
Where():
![image](https://private-user-images.githubusercontent.com/7220248/307574159-7381d8a6-27db-4177-b236-d242485fc54e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzNjI1NzIsIm5iZiI6MTczOTM2MjI3MiwicGF0aCI6Ii83MjIwMjQ4LzMwNzU3NDE1OS03MzgxZDhhNi0yN2RiLTQxNzctYjIzNi1kMjQyNDg1ZmM1NGUucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMiUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTJUMTIxMTEyWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9NjBjMGJiNTFhZTMyZjVlNGU5MmFkODRlYTkxZWYyMjk3ZmE3MDZhZGE0YjgzOTRlOGU1MjUyMjE2NDJiMTI0NCZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.yx4fwj-7vz5BjcYVeaY-fTqWeHesM2aSIwpzv26z5tQ)
Without Where():
![image](https://private-user-images.githubusercontent.com/7220248/307574237-d1417c9e-4cd4-457d-9e50-b662f5f8c197.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkzNjI1NzIsIm5iZiI6MTczOTM2MjI3MiwicGF0aCI6Ii83MjIwMjQ4LzMwNzU3NDIzNy1kMTQxN2M5ZS00Y2Q0LTQ1N2QtOWU1MC1iNjYyZjVmOGMxOTcucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMiUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTJUMTIxMTEyWiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9MTU2NmFhNDgwZWQ4ZTA3OTMwYWY3YmI3ZGU0OGNjN2ZlNjM0NzAwMjM3NWE5YjRkOTg1MTBlZWFjZjk3NzBiMSZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.qckR0xE4kqUb1SNO9-o7F3MukmvqL4-NeOoj4dGrajw)
Beta Was this translation helpful? Give feedback.
All reactions