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
dlt-system reads file content block by block only once and sends it to the dlt library. The file content is never read again, thus file access could be done in O_DIRECT mode without consuming as much memory resources.
The text was updated successfully, but these errors were encountered:
posix_fadvise with an appropriate hint (e.g. POSIX_FADV_SEQUENTIAL) is best, O_DIRECT has other implications which are orthogonal to the problem described.
dlt-system reads file content block by block only once and sends it to the dlt library. The file content is never read again, thus file access could be done in O_DIRECT mode without consuming as much memory resources.
The text was updated successfully, but these errors were encountered: