Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
search_tips
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rank
search_tips
Commits
c068fc92
Commit
c068fc92
authored
Jun 27, 2019
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增新标签的联想词
parent
3152ea7d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
13 deletions
+31
-13
auto_tips.py
associate/search/utils/auto_tips.py
+31
-13
No files found.
associate/search/utils/auto_tips.py
View file @
c068fc92
...
...
@@ -11,9 +11,6 @@ def get_suggest_tips(query, agile_tag_type):
try
:
# ios输入法在某些情况下会携带\\u2006
query
=
query
.
replace
(
"
\u2006
"
,
''
)
q
=
{}
# if agile_tag_type != -1:
# q["query"] =
q
=
{
"suggest"
:
{
"tips-suggest"
:
{
...
...
@@ -38,21 +35,42 @@ def get_suggest_tips(query, agile_tag_type):
result_dict
=
ESPerform
.
get_search_results
(
ESPerform
.
get_cli
(),
sub_index_name
=
"associate_tag"
,
query_body
=
q
,
offset
=
0
,
size
=
50
,
is_suggest_request
=
True
)
agile_type_id
=
set
()
logging
.
info
(
"get agile_tag_type:
%
s"
%
agile_tag_type
)
if
agile_tag_type
>
0
:
q
=
{
"query"
:
{
"term"
:
{
"agile_tag_type"
:
agile_tag_type
}
}
}
result_dicts
=
ESPerform
.
get_search_results
(
ESPerform
.
get_cli
(),
sub_index_name
=
"associate_tag"
,
query_body
=
q
,
offset
=
0
,
size
=
100
,
is_suggest_request
=
True
)
logging
.
info
(
"get result_dict_type:
%
s"
%
result_dicts
)
for
tips_item
in
result_dicts
[
"hits"
][
"hits"
]:
agile_type_id
.
add
(
tips_item
[
"_source"
][
"agile_tag_id"
])
logging
.
info
(
"get agile_type_id:
%
s"
%
agile_type_id
)
# 获取这个类型
logging
.
info
(
"get result_dict:
%
s"
%
result_dict
)
for
tips_item
in
result_dict
[
"suggest"
][
"tips-suggest"
]:
for
hit_item
in
tips_item
[
"options"
]:
if
hit_item
[
"_source"
][
"ori_name"
]
not
in
have_read_tips_set
:
have_read_tips_set
.
add
(
hit_item
[
"_source"
][
"ori_name"
])
highlight_marks
=
u'<ems>
%
s</ems>'
%
query
hit_item
[
"_source"
][
"highlight_name"
]
=
hit_item
[
"_source"
][
"ori_name"
]
.
replace
(
query
,
highlight_marks
)
ori_name
=
hit_item
[
"_source"
][
"ori_name"
]
results_num
=
hit_item
[
"_source"
][
"results_num"
]
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
agile_tag_id
=
hit_item
[
"_source"
][
"agile_tag_id"
]
if
agile_tag_id
in
agile_type_id
:
have_read_tips_set
.
add
(
hit_item
[
"_source"
][
"ori_name"
])
highlight_marks
=
u'<ems>
%
s</ems>'
%
query
hit_item
[
"_source"
][
"highlight_name"
]
=
hit_item
[
"_source"
][
"ori_name"
]
.
replace
(
query
,
highlight_marks
)
ori_name
=
hit_item
[
"_source"
][
"ori_name"
]
results_num
=
hit_item
[
"_source"
][
"results_num"
]
highlight_name
=
hit_item
[
"_source"
][
"highlight_name"
]
ret_list
.
append
([{
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
ret_list
.
append
(
[{
"ori_name"
:
ori_name
,
"results_num"
:
results_num
,
"highlight"
:
highlight_name
}])
return
ret_list
except
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment