提交 4be343ff authored 作者: Thomas Mueller's avatar Thomas Mueller

Creating a database was delayed about 2 seconds if the directory didn't exist.

上级 2c257f3e
...@@ -295,6 +295,7 @@ public class FileLock implements Runnable { ...@@ -295,6 +295,7 @@ public class FileLock implements Runnable {
private void lockSerialized() { private void lockSerialized() {
method = SERIALIZED; method = SERIALIZED;
fs.createDirs(fileName);
if (fs.createNewFile(fileName)) { if (fs.createNewFile(fileName)) {
properties = new SortedProperties(); properties = new SortedProperties();
properties.setProperty("method", String.valueOf(method)); properties.setProperty("method", String.valueOf(method));
...@@ -317,6 +318,7 @@ public class FileLock implements Runnable { ...@@ -317,6 +318,7 @@ public class FileLock implements Runnable {
properties = new SortedProperties(); properties = new SortedProperties();
properties.setProperty("method", String.valueOf(method)); properties.setProperty("method", String.valueOf(method));
setUniqueId(); setUniqueId();
fs.createDirs(fileName);
if (!fs.createNewFile(fileName)) { if (!fs.createNewFile(fileName)) {
waitUntilOld(); waitUntilOld();
String m2 = load().getProperty("method", FILE); String m2 = load().getProperty("method", FILE);
...@@ -354,6 +356,7 @@ public class FileLock implements Runnable { ...@@ -354,6 +356,7 @@ public class FileLock implements Runnable {
// if this returns 127.0.0.1, // if this returns 127.0.0.1,
// the computer is probably not networked // the computer is probably not networked
ipAddress = NetUtils.getLocalAddress(); ipAddress = NetUtils.getLocalAddress();
fs.createDirs(fileName);
if (!fs.createNewFile(fileName)) { if (!fs.createNewFile(fileName)) {
waitUntilOld(); waitUntilOld();
long read = fs.getLastModified(fileName); long read = fs.getLastModified(fileName);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论