Son
Son
Hey I ran into a same issue and had success with this https://www.postgresql.org/docs/9.4/sql-discard.html
Thanks @mehcode I realised that not all connections is clear. This leads to my question: how does this behave if I have load balancing servers connect to the same database?...
Hey @mehcode not sure if it has any value but Rails has the same issue and what they do is to clear the cache and retry it https://github.com/rails/rails/blob/main/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L725-L737 For transaction,...
Thanks for looking into this. I was thinking of DIY but then poem session implementation is quite elegant, it makes more sense to find a way to extend it rather...
Hey @sunli829, you probably have already thought about this approach. Just want to hear what you think of pros and cons of introducing something like `SessionMap`?
Hey @sunli829 just wonder if you come up with any ideas? If it is not good enough to implement in poem, maybe I can do it in a separate crate....
Hey mates, this looks like something that new person like me can help. Do you see any thing that is easy to get start with?
Hey mate, `argmin / argmax` looks like simple enough to look into, do you have any suggestions of where to start?
Hey mates, I have added `argmin_skipnan` and `argmax_skipnan`, wonder why you use `PartialOrd` for `min`, but `Ord` for `min_skipnan`? And what does this mean by this? `partialord version for quantiles`
Thanks @LukeMathWalker for the last point, if we change `A: Ord` to `A: PartialOrd` and refactor the code + test to allow that change, it would complete the task right?