[Zope-dev] object copy

2003-11-07 Thread Dmitrij Repp
Hi, how can I to copy of objects beetwen Folders with python? __ Gesendet von Yahoo! Mail - http://mail.yahoo.de Logos und Klingeltöne fürs Handy bei http://sms.yahoo.de ___ Zope-Dev

Re: [Zope-dev] KeywordIndex performance / multiunion

2003-11-07 Thread Seb Bacon
Tim Peters wrote: [Seb Bacon] But main the reason I'm posting is to wonder if there any reason not to use the multiunion operator instead of the union operator in UnIndex.py... it should be faster, right? It seems a touch faster in some informal tests. [Casey Duncan] Yes, it probably should

Re: [Zope-dev] KeywordIndex performance / multiunion

2003-11-07 Thread Seb Bacon
Casey Duncan wrote: On Thu, 06 Nov 2003 19:11:55 + Seb Bacon [EMAIL PROTECTED] wrote: A simple query for [A or B or C] against a KeywordIndex containing 27k objects is taking about 7 seconds on a Celeron 1.6Ghz, which seems an absurdly long time to me. guess This time may be caused by

Re: [Zope-dev] KeywordIndex performance / multiunion

2003-11-07 Thread Casey Duncan
On Fri, 07 Nov 2003 12:02:07 + Seb Bacon [EMAIL PROTECTED] wrote: Casey Duncan wrote: On Thu, 06 Nov 2003 19:11:55 + Seb Bacon [EMAIL PROTECTED] wrote: A simple query for [A or B or C] against a KeywordIndex containing 27k objects is taking about 7 seconds on a Celeron 1.6Ghz,

[Zope-dev] OR

2003-11-07 Thread Dmitrij Repp
or how can I with python a other PythonScript make? __ Gesendet von Yahoo! Mail - http://mail.yahoo.de Logos und Klingeltöne fürs Handy bei http://sms.yahoo.de ___ Zope-Dev maillist -

Re: [Zope-dev] OR

2003-11-07 Thread Andreas Jung
Your question does not make sense. -aj --On Freitag, 7. November 2003 14:20 Uhr +0100 Dmitrij Repp [EMAIL PROTECTED] wrote: or how can I with python a other PythonScript make? __ Gesendet von Yahoo! Mail - http://mail.yahoo.de

Re: [Zope-dev] object copy

2003-11-07 Thread Paul Winkler
On Fri, Nov 07, 2003 at 12:20:13PM +0100, Dmitrij Repp wrote: Hi, how can I to copy of objects beetwen Folders with python? http://www.zopelabs.com/cookbook/1037768468 such questions are probably better suited for the main zope list, [EMAIL PROTECTED] This list is for development of zope

Re: [Zope-dev] KeywordIndex performance / multiunion

2003-11-07 Thread Seb Bacon
Casey Duncan wrote: guess This time may be caused by fetching from the database. If so, then the only way to speed it up is increase the ZODB cache or get faster disks. Try the former and see if it helps. /guess Upping the cache speeds it up to something sane. However, I don't understand why.