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
We use regular FileChannel to save filters to file. Maybe we can consider to use buffered channel to improve performance which means write bytes to a buffer first then flush all the cumulative bytes to file.
Because filter is comparatively large, usually several MB, using buffered channel might not have significant improvement. So we need a benchmark first.
The text was updated successfully, but these errors were encountered:
We use regular
FileChannel
to save filters to file. Maybe we can consider to use buffered channel to improve performance which means write bytes to a buffer first then flush all the cumulative bytes to file.Because filter is comparatively large, usually several MB, using buffered channel might not have significant improvement. So we need a benchmark first.
The text was updated successfully, but these errors were encountered: