table 上的 `s 属性是什么意思?

What is the meaning of `s attribute on a table?

Q 语言精简手册 亚瑟 mentioned:

`s#table marks the table to use binary search and marks first column sorted

如果我们查看 3.6 版本:

N:1000000;
t1:t2:([]n:til N; m:N?`6);
t1:update `p#n from t1;
t2:`s#t2;
(meta t1)[`n]`a / `p
(meta t2)[`n]`a / `p
attr t1 / `
attr t2 / `s

\ts:10000 select count i from t1 where n in 1000?N
/ ~7000
\ts:10000 select count i from t2 where n in 1000?N
/ ~7000

我们发现是的,t2有这个属性:s.

但由于某种原因,第一列的属性不是 s,而是 p。而且搜索时间也是一样的。并且两个表的大小 with 属性是相同的 - 我使用 objsize AquaQ blogpost 中描述的函数来确保。

所以 q 的 3.6+ 版本在 's#table 和第一列上带有 '#p 属性的 table 之间有什么区别吗?

我认为 table 上的 s# 本身会缩短搜索时间的唯一方法是如果您使用 ? 进行查找,如下所述:https://code.kx.com/q/ref/find/#searching-tables

q)\ts:100000 t1?t1[0]
105 800
q)\ts:100000 t2?t2[0]
86 800
q)
q)\ts:100000 t1?t1[500000]
108 800
q)\ts:100000 t2?t2[500000]
83 800
q)
q)\ts:100000 t1?t1[999999]
107 800
q)\ts:100000 t2?t2[999999]
83 800

键控 table 的行为不同(将其转换为阶梯函数),但我认为这超出了您最初问题的范围。