deoqc

Results 8 comments of deoqc

From [Erlang Programming Rules](http://www.erlang.se/doc/programming_rules.shtml#HDR10): > 3.12 Make code as deterministic as possible > For example, suppose one process has to start five parallel processes and then check that they have...

I was trying to combine the `r.do` and `r.branch` command to validate unique ​_username_ and unique ​_email_​ (I have a separate table for each with primary key `r.uuid([username or email])`....

@danielmewes it is option 2, it call Thinky function and so it is executed no matter what. Two quick questions: - If I called a regular ReQL query in `>>[save]`,...

Thanks a lot @danielmewes for your time. I will do some `try / catch` while inserting to db, since this is the only safe way. And if some insert fail,...

My use cases is for n-n in one direction are small (usually 2 or 3) - e.g. a post have few tags - so document is not very big ....

+1 using `type.any()` for now

@jpdriver I mistakeling had not installed the fabric/digits sdk - I had missed this first step. I installed it now, and doesn't have this problem anymore. But the basic example...

Hello dagsters, I'm currently doing this using a `job` and sending multiple `context.log_event(AssetMaterialization(...))`. My use case is to actually have a daily partitioned assets (5) spanning multiple years (about 10)....