Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
f721fdbf
Commit
f721fdbf
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Plain Diff
Merge pull request #412 from matrix-org/erikj/search
Search: Add prefix matching support
parents
58d09277
976cb5aa
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
synapse/storage/search.py
+36
-11
36 additions, 11 deletions
synapse/storage/search.py
with
36 additions
and
11 deletions
synapse/storage/search.py
+
36
−
11
View file @
f721fdbf
...
@@ -140,7 +140,10 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -140,7 +140,10 @@ class SearchStore(BackgroundUpdateStore):
list of dicts
list of dicts
"""
"""
clauses
=
[]
clauses
=
[]
args
=
[]
search_query
=
search_query
=
_parse_query
(
self
.
database_engine
,
search_term
)
args
=
[
search_query
]
# Make sure we don't explode because the person is in too many rooms.
# Make sure we don't explode because the person is in too many rooms.
# We filter the results below regardless.
# We filter the results below regardless.
...
@@ -162,7 +165,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -162,7 +165,7 @@ class SearchStore(BackgroundUpdateStore):
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
sql
=
(
sql
=
(
"
SELECT ts_rank_cd(vector, query) AS rank, room_id, event_id
"
"
SELECT ts_rank_cd(vector, query) AS rank, room_id, event_id
"
"
FROM
plain
to_tsquery(
'
english
'
, ?) as query, event_search
"
"
FROM to_tsquery(
'
english
'
, ?) as query, event_search
"
"
WHERE vector @@ query
"
"
WHERE vector @@ query
"
)
)
elif
isinstance
(
self
.
database_engine
,
Sqlite3Engine
):
elif
isinstance
(
self
.
database_engine
,
Sqlite3Engine
):
...
@@ -183,7 +186,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -183,7 +186,7 @@ class SearchStore(BackgroundUpdateStore):
sql
+=
"
ORDER BY rank DESC LIMIT 500
"
sql
+=
"
ORDER BY rank DESC LIMIT 500
"
results
=
yield
self
.
_execute
(
results
=
yield
self
.
_execute
(
"
search_msgs
"
,
self
.
cursor_to_dict
,
sql
,
*
([
search_term
]
+
args
)
"
search_msgs
"
,
self
.
cursor_to_dict
,
sql
,
*
args
)
)
results
=
filter
(
lambda
row
:
row
[
"
room_id
"
]
in
room_ids
,
results
)
results
=
filter
(
lambda
row
:
row
[
"
room_id
"
]
in
room_ids
,
results
)
...
@@ -197,7 +200,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -197,7 +200,7 @@ class SearchStore(BackgroundUpdateStore):
highlights
=
None
highlights
=
None
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
highlights
=
yield
self
.
_find_highlights_in_postgres
(
search_
t
er
m
,
events
)
highlights
=
yield
self
.
_find_highlights_in_postgres
(
search_
qu
er
y
,
events
)
defer
.
returnValue
({
defer
.
returnValue
({
"
results
"
:
[
"
results
"
:
[
...
@@ -226,7 +229,10 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -226,7 +229,10 @@ class SearchStore(BackgroundUpdateStore):
list of dicts
list of dicts
"""
"""
clauses
=
[]
clauses
=
[]
args
=
[
search_term
]
search_query
=
search_query
=
_parse_query
(
self
.
database_engine
,
search_term
)
args
=
[
search_query
]
# Make sure we don't explode because the person is in too many rooms.
# Make sure we don't explode because the person is in too many rooms.
# We filter the results below regardless.
# We filter the results below regardless.
...
@@ -263,7 +269,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -263,7 +269,7 @@ class SearchStore(BackgroundUpdateStore):
sql
=
(
sql
=
(
"
SELECT ts_rank_cd(vector, query) as rank,
"
"
SELECT ts_rank_cd(vector, query) as rank,
"
"
origin_server_ts, stream_ordering, room_id, event_id
"
"
origin_server_ts, stream_ordering, room_id, event_id
"
"
FROM
plain
to_tsquery(
'
english
'
, ?) as query, event_search
"
"
FROM to_tsquery(
'
english
'
, ?) as query, event_search
"
"
NATURAL JOIN events
"
"
NATURAL JOIN events
"
"
WHERE vector @@ query AND
"
"
WHERE vector @@ query AND
"
)
)
...
@@ -313,7 +319,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -313,7 +319,7 @@ class SearchStore(BackgroundUpdateStore):
highlights
=
None
highlights
=
None
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
if
isinstance
(
self
.
database_engine
,
PostgresEngine
):
highlights
=
yield
self
.
_find_highlights_in_postgres
(
search_
t
er
m
,
events
)
highlights
=
yield
self
.
_find_highlights_in_postgres
(
search_
qu
er
y
,
events
)
defer
.
returnValue
({
defer
.
returnValue
({
"
results
"
:
[
"
results
"
:
[
...
@@ -330,7 +336,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -330,7 +336,7 @@ class SearchStore(BackgroundUpdateStore):
"
highlights
"
:
highlights
,
"
highlights
"
:
highlights
,
})
})
def
_find_highlights_in_postgres
(
self
,
search_
t
er
m
,
events
):
def
_find_highlights_in_postgres
(
self
,
search_
qu
er
y
,
events
):
"""
Given a list of events and a search term, return a list of words
"""
Given a list of events and a search term, return a list of words
that match from the content of the event.
that match from the content of the event.
...
@@ -338,7 +344,7 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -338,7 +344,7 @@ class SearchStore(BackgroundUpdateStore):
highlight the matching parts.
highlight the matching parts.
Args:
Args:
search_
t
er
m
(str)
search_
qu
er
y
(str)
events (list): A list of events
events (list): A list of events
Returns:
Returns:
...
@@ -370,14 +376,14 @@ class SearchStore(BackgroundUpdateStore):
...
@@ -370,14 +376,14 @@ class SearchStore(BackgroundUpdateStore):
while
stop_sel
in
value
:
while
stop_sel
in
value
:
stop_sel
+=
"
>
"
stop_sel
+=
"
>
"
query
=
"
SELECT ts_headline(?,
plain
to_tsquery(
'
english
'
, ?), %s)
"
%
(
query
=
"
SELECT ts_headline(?, to_tsquery(
'
english
'
, ?), %s)
"
%
(
_to_postgres_options
({
_to_postgres_options
({
"
StartSel
"
:
start_sel
,
"
StartSel
"
:
start_sel
,
"
StopSel
"
:
stop_sel
,
"
StopSel
"
:
stop_sel
,
"
MaxFragments
"
:
"
50
"
,
"
MaxFragments
"
:
"
50
"
,
})
})
)
)
txn
.
execute
(
query
,
(
value
,
search_
t
er
m
,))
txn
.
execute
(
query
,
(
value
,
search_
qu
er
y
,))
headline
,
=
txn
.
fetchall
()[
0
]
headline
,
=
txn
.
fetchall
()[
0
]
# Now we need to pick the possible highlights out of the haedline
# Now we need to pick the possible highlights out of the haedline
...
@@ -399,3 +405,22 @@ def _to_postgres_options(options_dict):
...
@@ -399,3 +405,22 @@ def _to_postgres_options(options_dict):
return
"'
%s
'"
%
(
return
"'
%s
'"
%
(
"
,
"
.
join
(
"
%s=%s
"
%
(
k
,
v
)
for
k
,
v
in
options_dict
.
items
()),
"
,
"
.
join
(
"
%s=%s
"
%
(
k
,
v
)
for
k
,
v
in
options_dict
.
items
()),
)
)
def
_parse_query
(
database_engine
,
search_term
):
"""
Takes a plain unicode string from the user and converts it into a form
that can be passed to database.
We use this so that we can add prefix matching, which isn
'
t something
that is supported by default.
"""
# Pull out the individual words, discarding any non-word characters.
results
=
re
.
findall
(
r
"
([\w\-]+)
"
,
search_term
,
re
.
UNICODE
)
if
isinstance
(
database_engine
,
PostgresEngine
):
return
"
&
"
.
join
(
result
+
"
:*
"
for
result
in
results
)
elif
isinstance
(
database_engine
,
Sqlite3Engine
):
return
"
&
"
.
join
(
result
+
"
*
"
for
result
in
results
)
else
:
# This should be unreachable.
raise
Exception
(
"
Unrecognized database engine
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment