Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0b437c95
提交
0b437c95
authored
7月 25, 2017
作者:
andrei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Addressing code review comments
上级
477fbaf0
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
110 行增加
和
67 行删除
+110
-67
tutorial.html
h2/src/docsrc/html/tutorial.html
+0
-7
FullText.java
h2/src/main/org/h2/fulltext/FullText.java
+34
-38
FullTextSettings.java
h2/src/main/org/h2/fulltext/FullTextSettings.java
+69
-22
TestFullText.java
h2/src/test/org/h2/test/db/TestFullText.java
+7
-0
没有找到文件。
h2/src/docsrc/html/tutorial.html
浏览文件 @
0b437c95
...
@@ -1320,13 +1320,6 @@ SELECT * FROM FTL_SEARCH_DATA('John', 0, 0);
...
@@ -1320,13 +1320,6 @@ SELECT * FROM FTL_SEARCH_DATA('John', 0, 0);
SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0);
SELECT * FROM FTL_SEARCH_DATA('LAST_NAME:John', 0, 0);
CALL FTL_DROP_ALL();
CALL FTL_DROP_ALL();
</pre>
</pre>
<p>
The Lucene fulltext search implementation is not synchronized internally.
If you update the database and query the fulltext search concurrently
(directly using the Java API of H2 or Lucene itself), you need to ensure
operations are properly synchronized. If this is not the case, you may get
exceptions such as
<code>
org.apache.lucene.store.AlreadyClosedException: this IndexReader is closed
</code>
.
</p>
<h2
id=
"user_defined_variables"
>
User-Defined Variables
</h2>
<h2
id=
"user_defined_variables"
>
User-Defined Variables
</h2>
<p>
<p>
...
...
h2/src/main/org/h2/fulltext/FullText.java
浏览文件 @
0b437c95
...
@@ -153,13 +153,12 @@ public class FullText {
...
@@ -153,13 +153,12 @@ public class FullText {
}
}
}
}
rs
=
stat
.
executeQuery
(
"SELECT * FROM "
+
SCHEMA
+
".WORDS"
);
rs
=
stat
.
executeQuery
(
"SELECT * FROM "
+
SCHEMA
+
".WORDS"
);
Map
<
String
,
Integer
>
map
=
setting
.
getWordList
();
while
(
rs
.
next
())
{
while
(
rs
.
next
())
{
String
word
=
rs
.
getString
(
"NAME"
);
String
word
=
rs
.
getString
(
"NAME"
);
int
id
=
rs
.
getInt
(
"ID"
);
int
id
=
rs
.
getInt
(
"ID"
);
word
=
setting
.
convertWord
(
word
);
word
=
setting
.
convertWord
(
word
);
if
(
word
!=
null
)
{
if
(
word
!=
null
)
{
map
.
put
(
word
,
id
);
setting
.
addWord
(
word
,
id
);
}
}
}
}
setting
.
setInitialized
(
true
);
setting
.
setInitialized
(
true
);
...
@@ -197,7 +196,7 @@ public class FullText {
...
@@ -197,7 +196,7 @@ public class FullText {
init
(
conn
);
init
(
conn
);
removeAllTriggers
(
conn
,
TRIGGER_PREFIX
);
removeAllTriggers
(
conn
,
TRIGGER_PREFIX
);
FullTextSettings
setting
=
FullTextSettings
.
getInstance
(
conn
);
FullTextSettings
setting
=
FullTextSettings
.
getInstance
(
conn
);
setting
.
getWordList
().
clear
();
setting
.
clearWordList
();
Statement
stat
=
conn
.
createStatement
();
Statement
stat
=
conn
.
createStatement
();
stat
.
execute
(
"TRUNCATE TABLE "
+
SCHEMA
+
".WORDS"
);
stat
.
execute
(
"TRUNCATE TABLE "
+
SCHEMA
+
".WORDS"
);
stat
.
execute
(
"TRUNCATE TABLE "
+
SCHEMA
+
".ROWS"
);
stat
.
execute
(
"TRUNCATE TABLE "
+
SCHEMA
+
".ROWS"
);
...
@@ -268,8 +267,8 @@ public class FullText {
...
@@ -268,8 +267,8 @@ public class FullText {
removeAllTriggers
(
conn
,
TRIGGER_PREFIX
);
removeAllTriggers
(
conn
,
TRIGGER_PREFIX
);
FullTextSettings
setting
=
FullTextSettings
.
getInstance
(
conn
);
FullTextSettings
setting
=
FullTextSettings
.
getInstance
(
conn
);
setting
.
removeAllIndexes
();
setting
.
removeAllIndexes
();
setting
.
getIgnoreList
().
clear
();
setting
.
clearInored
();
setting
.
getWordList
().
clear
();
setting
.
clearWordList
();
}
}
/**
/**
...
@@ -610,14 +609,13 @@ public class FullText {
...
@@ -610,14 +609,13 @@ public class FullText {
Set
<
String
>
words
=
New
.
hashSet
();
Set
<
String
>
words
=
New
.
hashSet
();
addWords
(
setting
,
words
,
text
);
addWords
(
setting
,
words
,
text
);
Set
<
Integer
>
rIds
=
null
,
lastRowIds
;
Set
<
Integer
>
rIds
=
null
,
lastRowIds
;
Map
<
String
,
Integer
>
allWords
=
setting
.
getWordList
();
PreparedStatement
prepSelectMapByWordId
=
setting
.
prepare
(
conn
,
PreparedStatement
prepSelectMapByWordId
=
setting
.
prepare
(
conn
,
SELECT_MAP_BY_WORD_ID
);
SELECT_MAP_BY_WORD_ID
);
for
(
String
word
:
words
)
{
for
(
String
word
:
words
)
{
lastRowIds
=
rIds
;
lastRowIds
=
rIds
;
rIds
=
New
.
hashSet
();
rIds
=
New
.
hashSet
();
Integer
wId
=
allWords
.
get
(
word
);
Integer
wId
=
setting
.
getWordId
(
word
);
if
(
wId
==
null
)
{
if
(
wId
==
null
)
{
continue
;
continue
;
}
}
...
@@ -765,9 +763,12 @@ public class FullText {
...
@@ -765,9 +763,12 @@ public class FullText {
+
StringUtils
.
quoteIdentifier
(
TRIGGER_PREFIX
+
table
);
+
StringUtils
.
quoteIdentifier
(
TRIGGER_PREFIX
+
table
);
stat
.
execute
(
"DROP TRIGGER IF EXISTS "
+
trigger
);
stat
.
execute
(
"DROP TRIGGER IF EXISTS "
+
trigger
);
if
(
create
)
{
if
(
create
)
{
ResultSet
rs
=
stat
.
executeQuery
(
"SELECT value FROM information_schema.settings WHERE name = 'MV_STORE'"
);
ResultSet
rs
=
stat
.
executeQuery
(
"SELECT value"
+
" FROM information_schema.settings"
+
" WHERE name = 'MV_STORE'"
);
boolean
multiThread
=
FullTextTrigger
.
isMultiThread
(
conn
);
boolean
multiThread
=
FullTextTrigger
.
isMultiThread
(
conn
);
StringBuilder
buff
=
new
StringBuilder
(
"CREATE TRIGGER IF NOT EXISTS "
);
StringBuilder
buff
=
new
StringBuilder
(
"CREATE TRIGGER IF NOT EXISTS "
);
// unless multithread, trigger needs to be called on rollback as well,
// unless multithread, trigger needs to be called on rollback as well,
// because we use the init connection do to changes in the index
// because we use the init connection do to changes in the index
// (not the user connection)
// (not the user connection)
...
@@ -833,13 +834,7 @@ public class FullText {
...
@@ -833,13 +834,7 @@ public class FullText {
private
static
void
setIgnoreList
(
FullTextSettings
setting
,
private
static
void
setIgnoreList
(
FullTextSettings
setting
,
String
commaSeparatedList
)
{
String
commaSeparatedList
)
{
String
[]
list
=
StringUtils
.
arraySplit
(
commaSeparatedList
,
','
,
true
);
String
[]
list
=
StringUtils
.
arraySplit
(
commaSeparatedList
,
','
,
true
);
Set
<
String
>
set
=
setting
.
getIgnoreList
();
setting
.
addInored
(
Arrays
.
asList
(
list
));
for
(
String
word
:
list
)
{
String
converted
=
setting
.
convertWord
(
word
);
if
(
converted
!=
null
)
{
set
.
add
(
converted
);
}
}
}
}
/**
/**
...
@@ -885,7 +880,7 @@ public class FullText {
...
@@ -885,7 +880,7 @@ public class FullText {
private
static
final
int
SELECT_ROW
=
5
;
private
static
final
int
SELECT_ROW
=
5
;
private
static
final
String
SQL
[]
=
{
private
static
final
String
SQL
[]
=
{
"INSERT INTO "
+
SCHEMA
+
".WORDS
(NAME) VALUES(?)"
,
"MERGE INTO "
+
SCHEMA
+
".WORDS(NAME) KEY
(NAME) VALUES(?)"
,
"INSERT INTO "
+
SCHEMA
+
".ROWS(HASH, INDEXID, KEY) VALUES(?, ?, ?)"
,
"INSERT INTO "
+
SCHEMA
+
".ROWS(HASH, INDEXID, KEY) VALUES(?, ?, ?)"
,
"INSERT INTO "
+
SCHEMA
+
".MAP(ROWID, WORDID) VALUES(?, ?)"
,
"INSERT INTO "
+
SCHEMA
+
".MAP(ROWID, WORDID) VALUES(?, ?)"
,
"DELETE FROM "
+
SCHEMA
+
".ROWS WHERE HASH=? AND INDEXID=? AND KEY=?"
,
"DELETE FROM "
+
SCHEMA
+
".ROWS WHERE HASH=? AND INDEXID=? AND KEY=?"
,
...
@@ -939,7 +934,8 @@ public class FullText {
...
@@ -939,7 +934,8 @@ public class FullText {
}
}
ArrayList
<
String
>
indexList
=
New
.
arrayList
();
ArrayList
<
String
>
indexList
=
New
.
arrayList
();
PreparedStatement
prep
=
conn
.
prepareStatement
(
PreparedStatement
prep
=
conn
.
prepareStatement
(
"SELECT ID, COLUMNS FROM "
+
SCHEMA
+
".INDEXES WHERE SCHEMA=? AND TABLE=?"
);
"SELECT ID, COLUMNS FROM "
+
SCHEMA
+
".INDEXES"
+
" WHERE SCHEMA=? AND TABLE=?"
);
prep
.
setString
(
1
,
schemaName
);
prep
.
setString
(
1
,
schemaName
);
prep
.
setString
(
2
,
tableName
);
prep
.
setString
(
2
,
tableName
);
rs
=
prep
.
executeQuery
();
rs
=
prep
.
executeQuery
();
...
@@ -1115,25 +1111,25 @@ public class FullText {
...
@@ -1115,25 +1111,25 @@ public class FullText {
PreparedStatement
prepInsertWord
=
null
;
PreparedStatement
prepInsertWord
=
null
;
try
{
try
{
prepInsertWord
=
getStatement
(
conn
,
INSERT_WORD
);
prepInsertWord
=
getStatement
(
conn
,
INSERT_WORD
);
Map
<
String
,
Integer
>
allWords
=
setting
.
getWordList
();
int
[]
wordIds
=
new
int
[
words
.
size
()];
int
[]
wordIds
=
new
int
[
words
.
size
()];
synchronized
(
allWords
)
{
int
i
=
0
;
int
i
=
0
;
for
(
String
word
:
words
)
{
for
(
String
word
:
words
)
{
Integer
wId
=
allWords
.
get
(
word
);
int
wordId
;
int
wordId
;
if
(
wId
==
null
)
{
Integer
wId
;
while
((
wId
=
setting
.
getWordId
(
word
))
==
null
)
{
prepInsertWord
.
setString
(
1
,
word
);
prepInsertWord
.
setString
(
1
,
word
);
prepInsertWord
.
execute
();
prepInsertWord
.
execute
();
ResultSet
rs
=
prepInsertWord
.
getGeneratedKeys
();
ResultSet
rs
=
prepInsertWord
.
getGeneratedKeys
();
rs
.
next
();
if
(
rs
.
next
())
{
wordId
=
rs
.
getInt
(
1
);
wordId
=
rs
.
getInt
(
1
);
allWords
.
put
(
word
,
wordId
);
if
(
wordId
!=
0
)
{
}
else
{
setting
.
addWord
(
word
,
wordId
);
wordId
=
wId
;
wId
=
wordId
;
break
;
}
}
}
wordIds
[
i
++]
=
wordId
;
}
}
wordIds
[
i
++]
=
wId
;
}
}
Arrays
.
sort
(
wordIds
);
Arrays
.
sort
(
wordIds
);
return
wordIds
;
return
wordIds
;
...
...
h2/src/main/org/h2/fulltext/FullTextSettings.java
浏览文件 @
0b437c95
...
@@ -25,7 +25,7 @@ final class FullTextSettings {
...
@@ -25,7 +25,7 @@ final class FullTextSettings {
/**
/**
* The settings of open indexes.
* The settings of open indexes.
*/
*/
private
static
final
Map
<
String
,
FullTextSettings
>
SETTINGS
=
Collections
.
synchronizedMap
(
New
.<
String
,
FullTextSettings
>
hashMap
()
);
private
static
final
Map
<
String
,
FullTextSettings
>
SETTINGS
=
New
.
hashMap
(
);
/**
/**
* Whether this instance has been initialized.
* Whether this instance has been initialized.
...
@@ -35,12 +35,12 @@ final class FullTextSettings {
...
@@ -35,12 +35,12 @@ final class FullTextSettings {
/**
/**
* The set of words not to index (stop words).
* The set of words not to index (stop words).
*/
*/
private
final
Set
<
String
>
ignoreList
=
Collections
.
synchronizedSet
(
New
.<
String
>
hashSet
()
);
private
final
Set
<
String
>
ignoreList
=
New
.
hashSet
(
);
/**
/**
* The set of words / terms.
* The set of words / terms.
*/
*/
private
final
Map
<
String
,
Integer
>
words
=
Collections
.
synchronizedMap
(
New
.<
String
,
Integer
>
hashMap
()
);
private
final
Map
<
String
,
Integer
>
words
=
New
.
hashMap
(
);
/**
/**
* The set of indexes in this database.
* The set of indexes in this database.
...
@@ -67,21 +67,58 @@ final class FullTextSettings {
...
@@ -67,21 +67,58 @@ final class FullTextSettings {
}
}
/**
/**
* Get the ignore list.
* Clear set of ignored words
*
* @return the ignore list
*/
*/
protected
Set
<
String
>
getIgnoreList
()
{
public
void
clearInored
()
{
return
ignoreList
;
synchronized
(
ignoreList
)
{
ignoreList
.
clear
();
}
}
}
/**
/**
* Get the word list.
* Amend set of ignored words
*
* @param words to add
* @return the word list
*/
public
void
addInored
(
Iterable
<
String
>
words
)
{
synchronized
(
ignoreList
)
{
for
(
String
word
:
words
)
{
word
=
normalizeWord
(
word
);
ignoreList
.
add
(
word
);
}
}
}
/**
* Clear set of searchable words
*/
*/
protected
Map
<
String
,
Integer
>
getWordList
()
{
public
void
clearWordList
()
{
return
words
;
synchronized
(
words
)
{
words
.
clear
();
}
}
/**
* Get id for a searchable word
* @param word to find id for
* @return Integer id or null if word is not found
*/
public
Integer
getWordId
(
String
word
)
{
synchronized
(
words
)
{
return
words
.
get
(
word
);
}
}
/**
* Register searchable word
* @param word to register
* @param id to register with
*/
public
void
addWord
(
String
word
,
Integer
id
)
{
synchronized
(
words
)
{
if
(!
words
.
containsKey
(
word
))
{
words
.
put
(
word
,
id
);
}
}
}
}
/**
/**
...
@@ -111,11 +148,12 @@ final class FullTextSettings {
...
@@ -111,11 +148,12 @@ final class FullTextSettings {
* @return the uppercase version of the word or null
* @return the uppercase version of the word or null
*/
*/
protected
String
convertWord
(
String
word
)
{
protected
String
convertWord
(
String
word
)
{
// TODO this is locale specific, document
word
=
normalizeWord
(
word
);
word
=
word
.
toUpperCase
();
synchronized
(
ignoreList
)
{
if
(
ignoreList
.
contains
(
word
))
{
if
(
ignoreList
.
contains
(
word
))
{
return
null
;
return
null
;
}
}
}
return
word
;
return
word
;
}
}
...
@@ -128,11 +166,14 @@ final class FullTextSettings {
...
@@ -128,11 +166,14 @@ final class FullTextSettings {
protected
static
FullTextSettings
getInstance
(
Connection
conn
)
protected
static
FullTextSettings
getInstance
(
Connection
conn
)
throws
SQLException
{
throws
SQLException
{
String
path
=
getIndexPath
(
conn
);
String
path
=
getIndexPath
(
conn
);
FullTextSettings
setting
=
SETTINGS
.
get
(
path
);
FullTextSettings
setting
;
synchronized
(
SETTINGS
)
{
setting
=
SETTINGS
.
get
(
path
);
if
(
setting
==
null
)
{
if
(
setting
==
null
)
{
setting
=
new
FullTextSettings
();
setting
=
new
FullTextSettings
();
SETTINGS
.
put
(
path
,
setting
);
SETTINGS
.
put
(
path
,
setting
);
}
}
}
return
setting
;
return
setting
;
}
}
...
@@ -220,8 +261,10 @@ final class FullTextSettings {
...
@@ -220,8 +261,10 @@ final class FullTextSettings {
* Close all fulltext settings, freeing up memory.
* Close all fulltext settings, freeing up memory.
*/
*/
protected
static
void
closeAll
()
{
protected
static
void
closeAll
()
{
synchronized
(
SETTINGS
)
{
SETTINGS
.
clear
();
SETTINGS
.
clear
();
}
}
}
protected
void
setWhitespaceChars
(
String
whitespaceChars
)
{
protected
void
setWhitespaceChars
(
String
whitespaceChars
)
{
this
.
whitespaceChars
=
whitespaceChars
;
this
.
whitespaceChars
=
whitespaceChars
;
...
@@ -231,4 +274,8 @@ final class FullTextSettings {
...
@@ -231,4 +274,8 @@ final class FullTextSettings {
return
whitespaceChars
;
return
whitespaceChars
;
}
}
private
String
normalizeWord
(
String
word
)
{
// TODO this is locale specific, document
return
word
.
toUpperCase
();
}
}
}
h2/src/test/org/h2/test/db/TestFullText.java
浏览文件 @
0b437c95
...
@@ -22,6 +22,7 @@ import java.util.concurrent.TimeUnit;
...
@@ -22,6 +22,7 @@ import java.util.concurrent.TimeUnit;
import
org.h2.fulltext.FullText
;
import
org.h2.fulltext.FullText
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.test.TestAll
;
import
org.h2.test.TestBase
;
import
org.h2.test.TestBase
;
import
org.h2.util.IOUtils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.Task
;
import
org.h2.util.Task
;
...
@@ -48,6 +49,12 @@ public class TestFullText extends TestBase {
...
@@ -48,6 +49,12 @@ public class TestFullText extends TestBase {
TestBase
.
createCaller
().
init
().
test
();
TestBase
.
createCaller
().
init
().
test
();
}
}
@Override
public
TestBase
init
(
TestAll
conf
)
throws
Exception
{
conf
.
lockTimeout
=
60000
;
return
super
.
init
(
conf
);
}
@Override
@Override
public
void
test
()
throws
Exception
{
public
void
test
()
throws
Exception
{
testUuidPrimaryKey
(
false
);
testUuidPrimaryKey
(
false
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论