Asdine El Hrychy

Results 94 comments of Asdine El Hrychy

That's an idea i have for a while to add support for the Raft protocol but probably on the next version.

You can find more informations in the source code of the `Save` method: https://github.com/asdine/storm/blob/master/store.go#L161

There is currently no index support in the `Select` method. While it could be a great addition, it is complicated to add them with the current code, so i decided...

> I think we will be. Storm and bolt are critical pieces of our app so we would love to be involved in the discussion at #211. Actually i was...

What about adding an interface that custom types would have to implement? Ex: ```go type Comparable interface { // Returns a number negative, null or positive if lower, equal or...

Can you provide a working example please so i can try to reproduce ? Also, what version of Storm are you using ?

I can't reproduce it either, are you sure your have the latest bbolt and storm version ?

Sorry for the delay, you can use `Select` with `Each`. ```go db.Select().Each(new(User), func(record interface{}) error) { u := record.(*User) ... return nil }) ```

One read lock for the entire `Each` scan. All the methods not returning an `Query` in the `Query` interface perform a read lock until they're done https://github.com/asdine/storm/blob/master/query.go#L33-L51

Something like a stream of data that continously gets written in Storm ? If i understand well, you are trying to use Storm like a queue system and expect the...