View Single Post
  #182  
Old 09-06-2026, 10:36
newfolder newfolder is offline
Registered User
 
Join Date: Dec 2016
Location: Austria
Posts: 5
Thanks: 12
Thanked 11 Times in 4 Posts
newfolder is on a distinguished road
Quote:
Originally Posted by wrathma View Post
instead of -ssd -hddslow -hddfast you could add a in memory buffer. a set size of memory will be allocated at start (ex: 64mb). you first write processed output to this memory buffer and when its full you flush it directly to storage (1 write operation, works on a separate thread) and in the meantime allocate another memory buffer to start again. so instead of a 1gb file doing 4k+ write operations (with -hdd*) it will do only 16-17 write operations.
You right, this changed the code 100%, amazing

Last edited by newfolder; 11-06-2026 at 07:54.
Reply With Quote