2
edits
| Line 125: | Line 125: | ||
*** This is really one of my primary concerns. Bugzilla is already used in a lot of situations that require strict security, such as US Government installations. I didn't find anything that would be adequate, in my brief Google search. -mkanat | *** This is really one of my primary concerns. Bugzilla is already used in a lot of situations that require strict security, such as US Government installations. I didn't find anything that would be adequate, in my brief Google search. -mkanat | ||
** Zope 3 indeed has zope.security (soon coming as an egg near you :). [http://svn.zope.org/zope.security/trunk/src/zope/security/README.txt?rev=75174&view=auto README.txt], [http://svn.zope.org/zope.security/trunk code], svn co svn://svn.zope.org/repos/main/zope.security/trunk zope.security) - faassen | ** Zope 3 indeed has zope.security (soon coming as an egg near you :). [http://svn.zope.org/zope.security/trunk/src/zope/security/README.txt?rev=75174&view=auto README.txt], [http://svn.zope.org/zope.security/trunk code], svn co svn://svn.zope.org/repos/main/zope.security/trunk zope.security) - faassen | ||
* Doesn't use OS threads | |||
** Python does use OS threads. The reason its threading model cannot make use of multi-core is the global interpreter lock. The typical suggestion is to use multiple processes if you want to scale over multi core. Zope has been doing this for years, with its clusterable object database (ZEO). Doing this will make it more easy to scale towards a cluster as well. - faassen | |||
== On Java Cons == | == On Java Cons == | ||
edits