SVN::Client::log() first argument Re: svn commit: r1729519 - /subversion/trunk/tools/client-side/svn-graph.pl

2016-02-14 Thread Daniel Shahaf
james...@apache.org wrote on Wed, Feb 10, 2016 at 03:22:36 -: ># Retrieve the requested history. > - $ra->get_log([''], $startrev, $youngest, 0, 1, 0, \&process_revision); > + $client->log($repos_url, $startrev, $youngest, 1, 0, \&process_revision); Why does this work? Both svn_client.h

Re: Making FS and repos layer log API streamy

2016-02-14 Thread Stefan Fuhrmann
On 03.02.2016 13:36, Ivan Zhakov wrote: On 31 January 2016 at 14:03, Stefan Fuhrmann wrote: Hi there, When the server needs to transmit the list of changed paths in a revision, its memory usage is O(#changes), i.e. practically unbound. The problems are: * FS and repos API require a full colle

Re: SVN::Client::log() first argument Re: svn commit: r1729519 - /subversion/trunk/tools/client-side/svn-graph.pl

2016-02-14 Thread James McCoy
On Sun, Feb 14, 2016 at 02:34:42PM +, Daniel Shahaf wrote: > james...@apache.org wrote on Wed, Feb 10, 2016 at 03:22:36 -: > ># Retrieve the requested history. > > - $ra->get_log([''], $startrev, $youngest, 0, 1, 0, \&process_revision); > > + $client->log($repos_url, $startrev, $young