MediaMonkey는 SQLite 데이터베이스를 사용하여 정보를 저장합니다. SQLite 데이터베이스는 기본적으로 소프트웨어 또는 하드웨어 장애가 발생하더라도 매우 안전하게 구성되었습니다. 그러나 일부 사용자는 약간의 안전성을 희생하고 약간 향상된 성능을 얻는 것을 선호할 수 있습니다.
이러한 사용자의 경우 아래에 표시된 줄을 MediaMonkey.ini 파일의 [시스템] 섹션에 추가해야 합니다.
[체계]
SQLite안전=x
x의 가능한 값은 0, 1 또는 2입니다.
0 : 가장 빠르지만 견고하지 않음, 동기식 = OFF라고도 함.
SQLite는 데이터를 운영 체제에 넘기자마자 멈추지 않고 계속합니다. MediaMonkey가 충돌하면 데이터는 안전하지만 운영 체제가 충돌하거나 해당 데이터가 디스크 표면에 기록되기 전에 컴퓨터가 전원이 꺼지면 데이터베이스가 손상될 수 있습니다. 반면에 일부 작업은 이 설정에서 최대 50배 이상 빠릅니다.
1 : 중간-매우 강력하며 동기=정상이라고도 합니다.
SQLite 데이터베이스 엔진은 가장 중요한 순간에도 여전히 일시 중지합니다. 잘못된 시간에 전원이 고장나서 데이터베이스가 손상될 가능성은 매우 낮지만(0은 아님) 있습니다. 하지만 실제로는 치명적인 디스크 고장이나 다른 복구할 수 없는 하드웨어 오류가 발생할 가능성이 더 큽니다.
2 : 매우 느림(기본값), 동기=FULL이라고도 함.
값이 2이면 SQLite 데이터베이스 엔진은 중요한 순간에 일시 중지하여 계속하기 전에 데이터가 실제로 디스크 표면에 기록되었는지 확인합니다. 이렇게 하면 운영 체제가 충돌하거나 전원이 꺼지더라도 재부팅 후 데이터베이스가 손상되지 않습니다. 이 모드는 매우 안전하지만 느립니다.
MediaMonkey uses the SQLite database to store information. The SQLite database is by default configured to be very safe even in cases of software or hardware failure. However, some users might prefer to sacrifice a little safety and get slightly improved performance.
For such users, the line indicated below should be added to the [System] section of the MediaMonkey.ini file:
[System]
SQLiteSafety=x
Possible values for x are 0, 1 or 2:
0: Fastest-least robust, also known as synchronous = OFF.
SQLite continues without pausing as soon as it has handed data off to the operating system. If MediaMonkey crashes, the data will be safe, but the database might become corrupted if the operating system crashes or the computer loses power before that data has been written to the disk surface. On the other hand, some operations are as much as 50 or more times faster at this setting.
1: Medium-very robust, also known as synchronous=NORMAL.
The SQLite database engine will still pause at the most critical moments. There is a very small (though non-zero) chance that a power failure at just the wrong time could corrupt the database. But in practice, you are more likely to suffer a catastrophic disk failure or some other unrecoverable hardware fault.
2: Slow-extremely robust (default), also known as synchronous=FULL.
With a value of 2, the SQLite database engine will pause at critical moments to make sure that data has actually been written to the disk surface before continuing. This ensures that if the operating system crashes or if there is a power failure, the database will be uncorrupted after rebooting. This mode is very safe, but it is also slow.
Applies to: MMW4, MMW5+
Hide original