Hello, I found that my database is broken. There is only \r at the end of a line, so an invalid database error is reported. I would like to ask why this is the case. Will it happen when multiple processes are open? Thank you!
A BuntDB database file should only be accessed from one process at a time. Multiple processes writing to the same file at the same time will risk corruption.
Hello, I found that my database is broken. There is only
\r
at the end of a line, so aninvalid database
error is reported. I would like to ask why this is the case. Will it happen when multiple processes are open? Thank you!