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
alpha
physical
Commits
4cc5217e
Commit
4cc5217e
authored
Mar 13, 2019
by
段英荣
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'homeq' into 'master'
Homeq See merge request
!166
parents
85d71bf0
ecbcaaeb
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
topic.py
search/utils/topic.py
+4
-2
topic.py
search/views/topic.py
+0
-0
trans2es_data2es_parallel.py
trans2es/management/commands/trans2es_data2es_parallel.py
+1
-1
No files found.
search/utils/topic.py
View file @
4cc5217e
...
...
@@ -121,7 +121,7 @@ class TopicUtils(object):
return
{}
@classmethod
def
get_recommend_topic_ids
(
cls
,
user_id
,
offset
,
size
,
query
=
None
,
query_type
=
TopicPageType
.
FIND_PAGE
,
filter_topic_id_list
=
[],
test_score
=
False
,
must_topic_id_list
=
[],
recommend_tag_list
=
[],
user_similar_score_list
=
[]):
def
get_recommend_topic_ids
(
cls
,
user_id
,
tag_id
,
offset
,
size
,
query
=
None
,
query_type
=
TopicPageType
.
FIND_PAGE
,
filter_topic_id_list
=
[],
test_score
=
False
,
must_topic_id_list
=
[],
recommend_tag_list
=
[],
user_similar_score_list
=
[]):
"""
:需增加打散逻辑
:remark:获取首页推荐帖子列表
...
...
@@ -291,8 +291,10 @@ class TopicUtils(object):
'operator'
:
'and'
,
'fields'
:
query_fields
,
}
query_function_score
[
"query"
][
"bool"
][
"should"
]
=
[
{
'multi_match'
:
multi_match
}
{
'multi_match'
:
multi_match
},
{
"term"
:{
"tag_list"
:
tag_id
}}
]
query_function_score
[
"query"
][
"bool"
][
"minimum_should_match"
]
=
1
...
...
search/views/topic.py
View file @
4cc5217e
This diff is collapsed.
Click to expand it.
trans2es/management/commands/trans2es_data2es_parallel.py
View file @
4cc5217e
...
...
@@ -129,7 +129,7 @@ class Command(BaseCommand):
def
generate_topic_score_detail
(
self
):
try
:
topic_id_dict
=
TopicUtils
.
get_recommend_topic_ids
(
241432787
,
0
,
500
,
query_type
=
TopicPageType
.
HOME_RECOMMEND
,
test_score
=
True
)
topic_id_dict
=
TopicUtils
.
get_recommend_topic_ids
(
241432787
,
0
,
0
,
500
,
query_type
=
TopicPageType
.
HOME_RECOMMEND
,
test_score
=
True
)
for
topic_id
in
topic_id_dict
:
offline_score
=
0.0
...
...
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