Jonas Breuer

Results 58 comments of Jonas Breuer

Im not talking about written tests... That part should be ok. More like testing it in different situations, under load etc. Something that is not total scripted lab env. Problems...

Thanks for the review @petar-dambovaliev. I will take a look at your suggestions. > cargo check produces an error I know about that and this is more or less wanted...

> IMO, i haven't seen anybody use async-std. Coupling with tokio is not an issue, in this sense. And my opinion is that sync and async should be entirely separate...

Sounds great. I like the Idea to remove error_chain. This one is a pain... Let me know if i can support somewhere.

Looks fine. I just found one little point i would try to avoid. You hardcoded the ports into the config. What do you think about making them as env vars...

No you are right. I didnt think about just overwriting the whole variable. Thats perfectly fine.

Thanks for the update. That's great news. Let me know if I can help anywhere.

The way you need to pass around instances like the Aerospike Client is a bit different in rust than most other languages would handle that. You have to pass the...

We migrated everything to the async branch and haven't experienced any problems yet. That's also the reason why my latest PRs are based on the async branch. Having it based...

Currently reads return a `Result`. The T only replaces what used to be `bins: HashMap` with `bins: T`. Is that the wanted behavior or should Record also be replaced so...