67ce69b2d6be585fcad3cb0dd5fc927e95c327ff chmalee Mon Oct 14 13:48:54 2019 -0700 Rework of hgHubConnect hub searching to not use trackDb or udc so searches can be sped up. The hubSearchText table now has an extra column for the parent track names (if any) of a search result to a track. hgHubConnect has been changed to use this field of the table instead of using trackDb. hubCrawl has been changed to generate this additional column, refs #23812 diff --git src/hg/lib/hubSearchText.as src/hg/lib/hubSearchText.as index 2da1c14..2d53100 100644 --- src/hg/lib/hubSearchText.as +++ src/hg/lib/hubSearchText.as @@ -1,10 +1,11 @@ table hubSearchText "Track hub descriptions" ( lstring hubUrl; "Hub URL" string db; "Assembly name (UCSC format) for Assembly and Track descriptions, NULL for hub descriptions" string track; "Track name for track descriptions, NULL for others" string label; "Name to display in search results" + lstring parents; "Comma separated list of parent track of this track, NULL for others" enum ("Short", "Long", "Meta") textLength; "Length of text (short for labels, long for description pages, meta for metadata)" lstring text; "Description text" )