Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-12Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-08-21Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-20Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-05-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-04-29Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-10-09Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-09-30Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-08-12Load search result counts asynchronouslyMarkus Koller
Querying all counts for the different search results in the same request led to timeouts, so we now only calculate the count for the *current* search results, and request the others in separate asynchronous calls.
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2018-09-11Disable existing offenses for the CodeReuse copsYorick Peterse
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
2018-01-24Use limit for search count queriesJan Provaznik
Search query is especially slow if a user searches a generic string which matches many records, in such case search can take tens of seconds or time out. To speed up the search query, we search only for first 1000 records, if there is >1000 matching records we just display "1000+" instead of precise total count supposing that with such amount the exact count is not so important for the user. Because for issues even limited search was not fast enough, 2-phase approach is used for issues: first we use simpler/faster query to get all public issues, if this exceeds the limit, we just return the limit. If the amount of matching results is lower than limit, we re-run more complex search query (which includes also confidential issues). Re-running the complex query should be fast enough in such case because the amount of matching issues is lower than limit. Because exact total_count is now limited, this patch also switches to to "prev/next" pagination. Related #40540
2017-02-16Reduce query count for snippet searchPhil Hughes
Recudes the number of queries within the snippet search from approx. 50 to approx. 14 by preloading the authors Part of #27392
2016-09-06Clean up search result classesValery Sizov
2016-03-11Refactor Gitlab::SnippetSearchResultsYorick Peterse
This removes the need for plucking snippet IDs into memory.
2016-02-05one more improvement to snippet searchValery Sizov
2016-02-05Faster snippet searchValery Sizov
2016-01-22Backport some changes from EEValery Sizov
2014-09-05Updating to persist a params snippets variableCharles Bushong
2014-09-02Changing some formatting for the Hound, modifying some UI textCharles Bushong
2014-08-29Adding in snippet search functionalityCharles Bushong
http://feedback.gitlab.com/forums/176466-general/suggestions/5529795-search-though-snippets