Entries from 2021-07-01 to 1 month

sonic, kdash を試してみた。

sonic rust 製の検索エンジン。ElasticSearch と同系統のもの。 https://github.com/valeriansaliou/sonic When reviewing Elasticsearch (ELS) and others, we found those were full-featured heavyweight systems that did not scale well with Crisp's f…

squirrel を試してみた。

squirrel すごくシンプルな SQL 生成ツール。これぐらいだと気軽に使えて良い。 https://github.com/Masterminds/squirrel 例えば、こうすると。 package main import ( "fmt" sq "github.com/Masterminds/squirrel" ) func main() { users := sq.Select("*"…

xsv, ants, resty を試してみた。

k-junです。今週も適当にライブラリを試して行きます。 xsv rust 製の csv 統計ツール。README.md を見る限りでは使いやすそうなので、適当な csv を生成して操作してみる。 https://github.com/BurntSushi/xsv ここに csv ファイルがいっぱい転がっているの…