Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
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
钟尚武
physical
Commits
074d6891
Commit
074d6891
authored
Dec 12, 2018
by
段英荣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify
parent
ac5effe0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
17 deletions
+27
-17
topic.py
search/utils/topic.py
+27
-17
No files found.
search/utils/topic.py
View file @
074d6891
...
@@ -140,21 +140,6 @@ class TopicUtils(object):
...
@@ -140,21 +140,6 @@ class TopicUtils(object):
q
[
"query"
]
=
dict
()
q
[
"query"
]
=
dict
()
functions_list
=
[
functions_list
=
[
{
"filter"
:
{
"bool"
:
{
"should"
:
attention_user_id_term_list
}},
"weight"
:
5
,
},
{
"filter"
:
{
"bool"
:
{
"should"
:
pick_user_id_term_list
}},
"weight"
:
3
},
{
"filter"
:
{
"bool"
:
{
"should"
:
same_group_user_id_term_list
}},
"weight"
:
2
},
{
{
"gauss"
:
{
"gauss"
:
{
"update_time"
:
{
"update_time"
:
{
...
@@ -165,6 +150,31 @@ class TopicUtils(object):
...
@@ -165,6 +150,31 @@ class TopicUtils(object):
}
}
]
]
if
len
(
attention_user_id_term_list
)
>
0
:
functions_list
.
append
(
{
"filter"
:
{
"bool"
:
{
"should"
:
attention_user_id_term_list
}},
"weight"
:
3
,
}
)
elif
len
(
pick_user_id_term_list
)
>
0
:
functions_list
.
append
(
{
"filter"
:
{
"bool"
:
{
"should"
:
pick_user_id_term_list
}},
"weight"
:
2
}
)
elif
len
(
same_group_user_id_term_list
)
>
0
:
functions_list
.
append
(
{
"filter"
:
{
"bool"
:
{
"should"
:
same_group_user_id_term_list
}},
"weight"
:
1
}
)
query_tag_term_list
=
cls
.
___get_should_term_list
(
user_tag_list
)
query_tag_term_list
=
cls
.
___get_should_term_list
(
user_tag_list
)
query_function_score
=
{
query_function_score
=
{
"query"
:
{
"query"
:
{
...
@@ -175,8 +185,8 @@ class TopicUtils(object):
...
@@ -175,8 +185,8 @@ class TopicUtils(object):
}
}
}
}
},
},
"score_mode"
:
"
max
"
,
"score_mode"
:
"
sum
"
,
"boost_mode"
:
"
replace
"
,
"boost_mode"
:
"
sum
"
,
"functions"
:
functions_list
"functions"
:
functions_list
}
}
...
...
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