Sergey Prokhorov

Results 208 comments of Sergey Prokhorov

I see boss_db is using `poolboy`, and poolboy doesn't have any "cooldown" period for "overload" connections, so, maybe you are constantly using between 100 and 120 connections so they keep...

Hi. The difference between squery and equery is that equery does 2 round-trips under the hood. 1st it sends query to the server and receives back instructions on how to...

Can you show your pgpool config?

Can you please add tests which actualy USE this new feature? So, `srid` field isn't `undefined`.

@namjae sorry, didn't get any notification about your update. I'm mean that we need a test which actualy inserts and selects this `2d_srid` points to/from database. Like `check_type(Module, geometry, "SELECT...

I'm also wonder if we really need this special datatype for points with/without SRID. As far as I understand, this SRID may be attached to any type of point? Am...

I'm not 100% sure+ but it looks like this pattern works with passive resources (you need to call some function to fetch next item from the stream), but epgsql replication...

Well, reading again through replication docs I now see that, when used with "callback process", replication is not 100% asynchronous, because receiver have to provide "feedback" to epgsql driver by...

A few notes: 1. Do you think we should use gen_server's mechanism of timeouts? Probably we may implement it inside `epgsql_sock` gen_server by some custom timer and this way make...