We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
永遠のテーマ、おそらく実現はしない
案1: あらかじめ10万件のデータをプリロードしておき、DBではなくそこから検索する 検索して規定件数に満たなかった場合はDBから残りを検索する
The text was updated successfully, but these errors were encountered:
ためしにPureRaceFinderでQueryable.AsQueryableを使ってみたところ、わずかな修正で正常に動く様子だった IAsyncEnumerableを実装してないためToArrayAsyncが呼び出せない点には注意が必要だが、FindRaceHorsesAsyncの呼び出し方を大きく変える必要はなさそう
PureRaceFinder
Queryable.AsQueryable
IAsyncEnumerable
ToArrayAsync
FindRaceHorsesAsync
ただし検索終了後もDBにクエリを発行するのでそこにも注意
(Queryable.AsQueryableってもともと何のために作られたメソッドなんだろう)
Sorry, something went wrong.
よく解ってないのですが、プリロードするというのはメモリ上に残しておく感じなのでしょうか?redisのような仕組みでしょうか? https://zenn.dev/nameless_sn/articles/why_is_redis_so_fast
@currysita (いつやるか分かってないですが) アプリケーションのヒープ領域(メモリ)での運用を考えてました。Redisのような別途ユーザー側でインストール作業が必要なものはやりたくないです もしかして、アプリを終了したあともキャッシュし続ける仕組みが欲しいのでしょうか?
No branches or pull requests
永遠のテーマ、おそらく実現はしない
案1:
あらかじめ10万件のデータをプリロードしておき、DBではなくそこから検索する
検索して規定件数に満たなかった場合はDBから残りを検索する
The text was updated successfully, but these errors were encountered: