Re: [Zope-dev] Re: Collector 697 should be critical!!!

2002-12-02 Thread abel deuring
a look sometime this week. Abel Deuring told me a patch, which solves the problem in the meanwhile: In OFS/dtml/properties.dtml I replaced select name=xyz:utf8:list multiple with: select name=xyz:utf8:list:string multiple It works for me, but I'm not sure, if this is a good

Re: [Zope-dev] http://cvs.zope.org/Products/Scheduler vs Xron forcron-like functionality. Advice?

2002-10-05 Thread abel deuring
Romain Slootmaekers wrote: This is a pain, Xron tries to invoke the actions from the front side of zope, ie by issuing a HTTP request. since we use a Zope+Apache httphttps setup, we just hacked Xron to rewrite the urls to http://127.0.0.1:8080/.. Another problem of Xron using

Re: [Zope-dev] ZCatalog - hiding query results

2001-11-10 Thread abel deuring
Igor Stroh wrote: Hi all, I don't know if it's the right list to post to, but I have the following problem: I have several objects (documents, folders etc) that are accessible only by a certain user role, this objects are cataloged. Now if I query the catalog the brains of these objects

Re: [Zope-dev] experiments bugs with data.fs 2GB

2001-07-03 Thread abel deuring
marc lindahl wrote: I've recently been testing a new setup with XFS (http://oss.sgi.com/projects/xfs/1.0_release.html) and decided to try to bloat data.fs before using this system for production. The computer is set up with zope 2.3.3 installed from source (the old fashioned way, with

Re: [Zope-dev] experiments bugs with data.fs 2GB

2001-07-03 Thread abel deuring
[sorry for the first reply containing only the quote of marc's nail... Seems that I'm getting too tired...] marc lindahl wrote: I've recently been testing a new setup with XFS (http://oss.sgi.com/projects/xfs/1.0_release.html) and decided to try to bloat data.fs before using this system for

Re: [Zope-dev] Re: Zcatalog bloat problem (berkeleydb is a solution?)

2001-06-26 Thread abel deuring
Hi Giovanni, Chris and all others, Chris McDonough wrote: Hi Giovanni, How many indexes do you have, what are the index types, and what do they index? Likewise, what about metadata? In your last message, you said there's about 20. That's a heck of a lot of indexes. Do you need them

Re: [Zope-dev] Re: Zcatalog bloat problem (berkeleydb is a solution?)

2001-06-26 Thread abel deuring
Hi all, Giovanni Maruzzelli wrote: We think that Abel is absolutely right: if in the same almost empty folder we add and catalog an object with one word (and now we have optimized and reduced the number of indexes to 11) it make a transaction of 73K, while if the object contains 300

Re: [Zope-dev] Re: Zcatalog bloat problem (berkeleydb is a solution?)

2001-06-26 Thread abel deuring
Chris McDonough wrote: Yikes. I wonder if this overhead comes from Vocabulary updates... thanks very much for doing this test. No, this should definetely _not_ be related to vocabulary: I simply copied an already indexed document and let ZCatalog.catalog_object munge the copy. So all words

Re: [Zope-dev] Zcatalog bloat problem (berkeleydb is a solution?)

2001-06-25 Thread abel deuring
Chris McDonough wrote: A solution might be a kind of lazy catalog awareness: Instead of mangling a new object through one or more catalogs when it is created, this object could be added to a list of objects to be cataloged later. This way, the transaction to insert a new object would

Re: [Zope-dev] Zcatalog bloat problem (berkeleydb is a solution?)

2001-06-25 Thread abel deuring
Giovanni Maruzzelli wrote: Hello Zopistas, we are developing a Zope 2.3.3 (py 1.5.2) application that will add, index and reindex some tens of thousands objects (Zclass that are DTMLDocument on steroids) on some twenty properties each day, while the absolute number of objects cataloged

Re: [Zope-dev] Wildcards in TextIndex query. Do they work?

2001-06-23 Thread abel deuring
Erik Enge wrote: On Wed, 30 May 2001, Erik Enge wrote: I'm going bug hunting... I'm back :) I think I found the bug. In lib/python/SearchIndex/GlobbingLexicon.py in the query_hook() method. It seems to say that: if I can't find a '*' or a '?' in the word, then go to else-clause,

[Zope-dev] ZCatalog patch for indexing larger amounts of text

2001-05-25 Thread abel deuring
Hi all, I got problems similar to those described by Erik Enge a few weeks ago with indexing a somewhat larger amount of text (~500 MB in ~194000 objects): Zope tends to eat up all available memory (640MB in my case) and swap space. The main problem seem to be that the classes Zcatalog,