Justin Francis wrote:
> So is there any interest in this feature? 

Yes, maybe the folks doing the TimeTracking stuff would be interested too.

 > Originally, I believe there
> were some concerns about performance because the design called for 
> instantiating ticket objects for all tickets in the milestone and 
> passing it to the extension 
> (http://thread.gmane.org/gmane.comp.version-control.subversion.trac.devel/75/focus=78).
>  
> Is this still a concern?

Probably, yes. What about using only the ticket ids?
Then the plugin can focus on collecting the stat info really needed (in 
your case the 'difficulty' custom field)?

With recent pysqlite2 and cached queries, things like:

for id in tickets:
     cursor.execute('select ... where ticket=%s', (id,))

should be reasonably fast, I believe.

-- Christian


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac 
Development" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/trac-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to