Asdine El Hrychy

Results 46 issues of Asdine El Hrychy

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...

in progress

It would nice to be able to set a TTL to some records for them to be removed after a certain amount of time

discussion

``` go type User struct { ID int `storm:"increment"` Age int Group Group `storm:"ref(Group)"` // declare a reference to the Group bucket } type Group { ID int `storm:"increment"` Name...

enhancement
help wanted
discussion

Adding map support to Storm could allow users to store dynamic values and to be able to query them as if they were saved with a structure. The main differences...

enhancement
discussion

Deleting a record by field currently requires to fetch the record then deleting it, and to avoid race it must be done within the same transaction. That's a lot of...

enhancement

There should be a way to choose how we want to encode keys. - no option -> the current behaviour - option -> pass a `KeyEncoder` or - option ->...

See : https://twitter.com/jonaswouters/status/722530280867819520

enhancement

I'm trying to find a way to use the textarea component as an input that automatically grows as we are writing new lines (with an optional limit). Is there an...

# Feature Request Currently, it seems that there is no way to execute some code between the moment the program receives an exit signal / ctrl D and the call...

enhancement

```sql genji> create table foo(a int); genji> insert into foo (a) values (1); genji> select a, b from foo; { "a": 1, "b": null } ``` An error should be...

bug