Zippo

Results 14 comments of Zippo

Hi @isbm You write well, maybe start a blog? 😋 Is this a bug? A feature? Well... Your use-case is literally [in the documentation](https://github.com/zippoxer/bow#querying). I guess that's not a feature...

I haven't had the chance to play with protocol buffers yet. I know [gogo/protobuf](https://github.com/gogo/protobuf) is super fast, and that Protocol Buffers is more space efficient than both JSON and MessagePack,...

Cool! Thanks for the reference. Although TreeSQL is relational and has a query language rather than a query API (which is what I aim for), I'll try and learn what...

Funnily enough, we're not alone in this -- [Understanding the Workbench Xml database scheme](https://github.com/mysql-workbench-schema-exporter/mysql-workbench-schema-exporter/wiki/Understanding-the-Workbench-Xml-database-scheme) 😄

@chrisneal Sounds great. I think we can take it a step further and generate an SSH connection instead of opening a tunnel and generating a regular connection. This would mean...

Hang in there mate. Try removing any JSON file from your drive. If you absolutely can't remove, patiently convert any JSON document in your possession to Python dictionaries.

@benbjohnson I only use a single bucket and put the million records there. So according to what you said, I shouldn't be seeing many chunks of records separated with 4...

@benbjohnson Yes, I have a self-contained test that produces this result: ``` package main import ( "log" "math/rand" "time" "encoding/binary" "bytes" "github.com/boltdb/bolt" _ "github.com/lib/pq" ) type PriceRecord struct { D...

@benbjohnson Setting FillPercent to 0.9 reduces the file size by 37% from 103 MB to 64 MB. So that really helps, thanks :) So 64 MB is a bit less...

@dtfinch Alright, now it seems reasonable to me :) And yes, my key is 8 bytes (didn't notice the itob function I copied from bolt's README). Thanks for walking me...