-
I'm working on an application which processes a large binary file. What's the best way of caching bytes / pages? Here is what I've considered:
Appreciate any advice if there's any other solution that's already available. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
How much is read from / around the "same location"? So is it possible to read into a (rented) |
Beta Was this translation helpful? Give feedback.
-
We don't have anything for caching random reads, but What you need to do:
|
Beta Was this translation helpful? Give feedback.
How much is read from / around the "same location"?
Is the move to another location always the same or is it more random-access like?
So is it possible to read into a (rented)
byte[]
and use that as simple and fast in-memory cache for this?Or is the use of Pipelines possible?