Richard

Results 156 comments of Richard

@dmaziarz It doesn't work because `$hasMany` creates an array of arrays. `$hasOne` just creates an array. So `$in` compares ```js 1 === [1] ``` which failes. The last time I...

> So I guess the initial important Q would be: is there any interest in ^? There definitly is for me.

@oberstet During this year I will have to start e2e support for all connectanum packages. I'll provide my diagramms when I start the implamentation. Do you have any flow diagramms...

I just implemented this feature into my router/client. it helped me a lot with being compatible to other frameworkes that already have a communication interface and need to translate to...

@oberstet Thank your for that hint. I use Netty 4.0 as the underlying WebSocketServer/Client which for some [unknown reason](http://stackoverflow.com/questions/37207133/why-is-does-netty-4-0-x-limit-the-default-websocket-frame-size-to-65536-byte) has a default famesize limit of 64kbyte.

For me: Pro: - saving amount of messages when meta data is needed - makes custom features possible Cons: - may make often used messages larger - not strictly defined...

@oberstet Wouln't that end up in having something equal to a RPC request with an empty `RESULT`?

@oberstet I see what you mean, but I do not need it per procedure, but per procedure with certain kwargs or args. Lets say I have a procedure `order.a.meal` called...

This is exactly what I want! What do you think about it? And my current solution?

> this is a good starting point .. we'll need to figure out more .. couple of first notes I thought so. But I thought I'd just start with something....