hi, I looking for anyone who has worked with zope on solaris 8. The problem I am having is that it runs super slow. I have compiled everything from source using cc to get the 64bit optimizations. Right now I have been benchmarking against just ZServer with no Apache between. No matter what I do I cannot seem to get the install up the speed it should be on Sun a E-250 with dual processors and 2 GB of ram. What's worse is that the same site that runs so slow on solaris flys on a Linux (redhat 7.1) box. The hardware is comparable (dual 700 mhz, 2 GB ram), but the benchmarks are about 2 times faster everytime. Any ideas why Linux is so much better than solaris?? thanks, ******************************************************** * Jason Witt Java and Web Services - ADCS * * Web Developer University of Minnesota, Mpls * * Systems Administrator 190 Shepherd Laboratories * * jdwitt@umn.edu Ph. 612-626-8663 * ********************************************************
I use export/import to transfer a ZClass product from a Zope-2.3 installation to a Zope-2.4 one. There is "DeprecationWarning" dumped to the console. And the connection between zope and the browser is then broken. Is there any way to suppress the warining? or any workaround? Thanks for any suggestion. Iap, Singuan ================= The dumped waring:::::::::: /usr/local/Zope-2.4.0-src/lib/python/ts_regex.py:87: DeprecationWarning: the regex module is deprecate d; please use the re module
Hello Iap, There's been a bit of discussion about this on the list before. You may find your answer by searching the Mailing List Archives. I don't know the whole story, but it may be as easy as replacing "regex" with "re" in the ts_regex.py file. Eric.
-----Original Message----- From: zope-admin@zope.org [mailto:zope-admin@zope.org]On Behalf Of iap@y2fun.com Sent: Tuesday, August 14, 2001 12:51 AM To: zope@zope.org Subject: [Zope] "DeprecationWarning" breaks the socket connection?
I use export/import to transfer a ZClass product from a Zope-2.3 installation to a Zope-2.4 one. There is "DeprecationWarning" dumped to the console. And the connection between zope and the browser is then broken. Is there any way to suppress the warining? or any workaround?
Thanks for any suggestion.
Iap, Singuan
================= The dumped waring:::::::::: /usr/local/Zope-2.4.0-src/lib/python/ts_regex.py:87: DeprecationWarning: the regex module is deprecate d; please use the re module
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
a Zope-2.4 one. There is "DeprecationWarning" dumped to the console. And the connection between zope and the browser is then broken. Is there any way to suppress the warining? or any workaround?
If you get that, you should consider running your server detached from the console. The easiest way to do so is this (under Unix): nohup ./start & If you don't do that, any print statement to the console will break your connection as soon as the initial shell window has been closed, regardless whether you run in debug mode or not. Joachim
participants (4)
-
Eric Walstad -
iap@y2fun.com -
Jason Witt -
Joachim Werner