[Zope-Checkins] CVS: Zope/lib/python/Products/ZCatalog/help - ZCatalog_Parameters.stx:1.6
Andreas Jung
andreas@digicool.com
Fri, 3 May 2002 12:32:21 -0400
Update of /cvs-repository/Zope/lib/python/Products/ZCatalog/help
In directory cvs.zope.org:/tmp/cvs-serv26844/help
Modified Files:
ZCatalog_Parameters.stx
Log Message:
Eased the query optimization introduced with Zope 2.4.X
(revision 1.72 or Catalog.py).
TTW searches are no longer optimized to restore the old
behaviour (user does not fill out any form fields ->
return all hits)
For application related searches we keep the optimization
but it is possible to disable optimization by passing
'optimize=0' as additional parameters to searchResults().
=== Zope/lib/python/Products/ZCatalog/help/ZCatalog_Parameters.stx 1.5 => 1.6 ===
'level' -- only applies to Path Index. Specifies the directory
level to start searching. (optional, default: 0)
+
+
+ Parameters for searchResults():
+
+ 'optimize' -- ZCatalog performs a query optimization for queries
+ not passed through the web (either as dictionary or mapping). To
+ disable this optimization set optimize to 0 (optional, default: 1).
+ Optimization is disabled for searches through the web.