storm
storm copied to clipboard
Simple and powerful toolkit for BoltDB
1. Just looking at the best way to do a groupby(index field) and just return counts of the records with this index struct test { name string phone... } I...
After v3, I realized Storm was becoming hard to maintain. It was relying too much on reflection, felt bloated, and was performing poorly. There were a lot of ongoing discussions...
目前测试结果: 每秒写入: 30~50条数据, 每条数据字段只有5个 每秒删除数据:30~40条数据 单表数据量100,000 多一点
The speed of writing or deleting is only 40 records per second. Is there a problem with my use? The current data volume is 100,000
I am calling `db.Save(&model)` to save (or rather insert) two million objects. This is incredibly slow. Is there a faster/better way of doing this with `storm`?
As it is, one can add a `index` tag to a slice field, and the whole slice will be used as a key in the index - which is expected,...
I have a struct as follows ```go type struct App { ID int `storm:"increment"` Uid int `storm:"index"` Key string } ``` and I want to give a value to `Key`...
Hey there I wonder if storm can support fetch certain fields only like gorm do: ```go type User struct { ID uint Name string Age int Gender string // hundreds...
I am trying to manually update the auto increment counter under the __storm_metadata bolt bucket. The purpose of this is because I am writing a utility to output only a...
Hi, I am wondering if these two errors are supposed to be considered equivalent? I notice they are documented the same, and obviously have the same error message. At my...