column
column copied to clipboard
High-performance, columnar, in-memory store with bitmap indexing in Go
There is a lot of string look UPS, especially around column names. With the generics in 1.18 is it possible to make it so that columns could be using integers...
if i do a table.Insert(func(r column.Row) error { r.SetString("name", "Alice"+RandStringBytes(70000)) return nil }) it results in a "runtime error: index out of range [75901] with length 70009". Is there a...
I would like column to be persistent, are there plans to do so? if so approximately when will it be ready?
Needed while constructing a dynamic columns query
I have a question about using Ascend with CreateSortIndex. In the result duplicate entries are not output. Is there a way that these are returned? In this case only one...
say I get a stream of data: {machineCode: "", lat: , lon: } And I want to display a count of such datums per machineCode. Is there a way to...
I modified the million benchmark to billion and it took forever to insert. Is it possible to expand the commit.Buffer to speed up the transaction?
when create columns with **CreateColumnsOf** as below, there is no way to set a PK field. ` obj := map[string]any{ "name": "Roman", "age": 35, "wallet": 50.99, "health": 100, "mana": 200,...
right now this project supports bitmap index, it works well in some cases. if it support b-tree index, it will suport more uses scenarios thank you very much build such...
Hello, nice project you got here. My use case is fetching all data from the past hour and doing a join on another table. Did anybody do anything like this...