mirror of
https://github.com/YGGverse/YGGo.git
synced 2025-01-24 13:34:25 +00:00
add search index by host and host page URL
This commit is contained in:
parent
1e664ba4cd
commit
b13293988a
@ -16,6 +16,12 @@ source hostPage : common
|
||||
`hostPage`.`uri`, \
|
||||
`hostPage`.`rank`, \
|
||||
`host`.`name`, \
|
||||
IF (`host`.`port` IS NOT NULL, \
|
||||
CONCAT(`host`.`scheme`, '://', `host`.`name`, ':', `host`.`port`), \
|
||||
CONCAT(`host`.`scheme`, '://', `host`.`name`)) AS `hostURL`, \
|
||||
IF (`host`.`port` IS NOT NULL, \
|
||||
CONCAT(`host`.`scheme`, '://', `host`.`name`, ':', `host`.`port`, `hostPage`.`uri`), \
|
||||
CONCAT(`host`.`scheme`, '://', `host`.`name`, `hostPage`.`uri`)) AS `hostPageURL`, \
|
||||
REGEXP_REPLACE(`hostPage`.`mime`, '^([A-z-]+)/[A-z-]+.*', '$1') AS `mime`, \
|
||||
(SELECT GROUP_CONCAT(CONCAT_WS(' ', `hostPageDescription`.`title`, \
|
||||
`hostPageDescription`.`description`, \
|
||||
@ -28,6 +34,9 @@ source hostPage : common
|
||||
|
||||
sql_attr_uint = rank
|
||||
sql_attr_string = mime
|
||||
sql_attr_string = uri
|
||||
sql_attr_string = hostURL
|
||||
sql_attr_string = hostPageURL
|
||||
}
|
||||
|
||||
index hostPage
|
||||
|
Loading…
x
Reference in New Issue
Block a user