mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
CLICKHOUSE-3751: stem terms while searching docs (#3522)
* CLICKHOUSE-4063: less manual html @ index.md * CLICKHOUSE-4063: recommend markdown="1" in README.md * CLICKHOUSE-4003: manually purge custom.css for now * CLICKHOUSE-4064: expand <details> before any print (including to pdf) * CLICKHOUSE-3927: rearrange interfaces/formats.md a bit * CLICKHOUSE-3306: add few http headers * Remove copy-paste introduced in #3392 * Hopefully better chinese fonts #3392 * get rid of tabs @ custom.css * Apply comments and patch from #3384 * Add jdbc.md to ToC and some translation, though it still looks badly incomplete * minor punctuation * Add some backlinks to official website from mirrors that just blindly take markdown sources * Do not make fonts extra light * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's//g' {} * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's/ sql/g' {} * Remove outdated stuff from roadmap.md * Not so light font on front page too * Refactor Chinese formats.md to match recent changes in other languages * Update some links on front page * Remove some outdated comment * Add twitter link to front page * More front page links tuning * Add Amsterdam meetup link * Smaller font to avoid second line * Add Amsterdam link to README.md * Proper docs nav translation * Back to 300 font-weight except Chinese * fix docs build * Update Amsterdam link * remove symlinks * more zh punctuation * apply lost comment by @zhang2014 * Apply comments by @zhang2014 from #3417 * Remove Beijing link * rm incorrect symlink * restore content of docs/zh/operations/table_engines/index.md * CLICKHOUSE-3751: stem terms while searching docs
This commit is contained in:
parent
9d328839d5
commit
3809f39ddf
@ -4887,6 +4887,12 @@ var Result = function () {
|
||||
/* Append trailing wildcard to all terms for prefix querying */
|
||||
.query(function (query) {
|
||||
_this.value_.toLowerCase().split(" ").filter(Boolean).forEach(function (term) {
|
||||
for (var lang in _this.lang_) {
|
||||
lang = _this.lang_[lang];
|
||||
if (typeof(_exposeLoaderLunrLunr2.default[lang]) !== 'undefined' && typeof(_exposeLoaderLunrLunr2.default[lang].stemmer) !== 'undefined') {
|
||||
term = _exposeLoaderLunrLunr2.default[lang].stemmer(new _exposeLoaderLunrLunr2.default.Token(term)).toString();
|
||||
}
|
||||
}
|
||||
query.term(term, { wildcard: _exposeLoaderLunrLunr2.default.Query.wildcard.TRAILING });
|
||||
});
|
||||
})
|
||||
|
@ -1,13 +0,0 @@
|
||||
# 表引擎
|
||||
表引擎(即表的类型)决定了:
|
||||
|
||||
* 数据的存储方式和位置,写到哪里以及从哪里读取数据。
|
||||
* 支持哪些查询以及如何支持。
|
||||
* 并发数据访问。
|
||||
* 索引的使用(如果存在)。
|
||||
* 是否可以执行多线程请求。
|
||||
* 数据复制参数。
|
||||
|
||||
在读取时,引擎只需要输出所请求的列,但在某些情况下,引擎可以在响应请求时部分处理数据。
|
||||
|
||||
对于大多数正式的任务,应该使用MergeTree族中的引擎。
|
14
docs/zh/operations/table_engines/index.md
Normal file
14
docs/zh/operations/table_engines/index.md
Normal file
@ -0,0 +1,14 @@
|
||||
# 表引擎
|
||||
|
||||
表引擎(即表的类型)决定了:
|
||||
|
||||
* 数据的存储方式和位置,写到哪里以及从哪里读取数据
|
||||
* 支持哪些查询以及如何支持。
|
||||
* 并发数据访问。
|
||||
* 索引的使用(如果存在)。
|
||||
* 是否可以执行多线程请求。
|
||||
* 数据复制参数。
|
||||
|
||||
在读取时,引擎只需要输出所请求的列,但在某些情况下,引擎可以在响应请求时部分处理数据。
|
||||
|
||||
对于大多数正式的任务,应该使用MergeTree族中的引擎。
|
@ -92,8 +92,7 @@
|
||||
</div>
|
||||
<div id="announcement" class="colored-block">
|
||||
<div class="page">
|
||||
Upcoming meetups in <a class="announcement-link" href="http://www.clickhouse.com.cn/topic/5ba0e3f99d28dfde2ddc62a1" rel="external nofollow" target="_blank">Beijing on October 28</a>
|
||||
and <a class="announcement-link" href="https://events.yandex.com/events/meetings/15-11-2018/" rel="external nofollow" target="_blank">Amsterdam on November 15</a>
|
||||
Upcoming meetup in <a class="announcement-link" href="https://events.yandex.com/events/meetings/15-11-2018/" rel="external nofollow" target="_blank">Amsterdam on November 15</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="page">
|
||||
|
Loading…
Reference in New Issue
Block a user