When put(String,Object) is called, the data is instantly written to the disk. If there are consecutive calls then it noticeably reduce performance since each put is opening, writing, closing the stream.
There should be a method which allow to put multiple times and commit them at once in the last. (Transaction like mechanisim)
When
put(String,Object) is called, the data is instantly written to the disk. If there are consecutive calls then it noticeably reduce performance since each put is opening, writing, closing the stream.There should be a method which allow to put multiple times and commit them at once in the last. (Transaction like mechanisim)