java - codeswarm help: Anyone have experience setting up codeswarm for use with perforce activity log? -
i've been trying setup codeswarm kicks @ work using activity log generated our perforce depot. running troubles following guide/wiki on google-code site , wondering if maybe had experiences setting perforce server share?
i running utf-8 encoding issues it's taking bloody long time believe. activity log generated python script 65k. have seen videos of other seemingly large projects cannot tell if cause.
any appreciated. thanks
i ran similar issues runtime. interest in visualizing recent development cycle company's large project, consisted of approximately 10000 perforce changelists.
looking @ convert_logs.py
, saw making direct call p4 -g changelists
dump entire revision history @ considerable cost. p4 changes
takes argument -m
limit number of changelists returned. edited line 347 of convert_logs.py from
changelists = run_marshal('p4 -g changelists "' + opts.perforce_path + '"')
to
changelists = run_marshal('p4 -g changes -m 10000 "' + opts.perforce_path + '"')
this helped immensely reducing runtime.
if feeling ambitious, i'd suggest refactoring convert_logs include --perforce-args
option , other options specified.
Comments
Post a Comment