Till!
Till!
And please include a small test case.
PR = pull request
The test case ensures it stays fixed and doesn't break other code.
The most simple way is clicking 'edit' directly at the files on github and doing your changes there. It would fork the repo and automatically create a branch with your...
It's not a requirement for this improvement, but IMHO it makes catching specific errors easier. E.g. ``` try { $rediska = new Rediska(...) $rediska->... $rediska->get... } catch (Rediska_InvalidArgumentException $e) {...
What I forgot was... If my application uses SPL exceptions anyway, I could also: ``` } catch (InvalidArgumentException $e) { ```
So any thoughts?
@Shumkov ?
I wonder if this shouldn't be handled in code but by a TCP loadbalancer like haproxy?
Is this for sharding to multiple redis instances?