Re: IndexedCatalog and ZEO

2005-03-07 Thread Almad
Leif K-Brooks wrote: > from IndexedCatalog.Shelf import Shelf > shelf = Shelf(('localhost', 1234), [Class1, Class2]) Is it also possible to connect via socket instead of port? I've tried to pass '/tmp/zeosocket' instead of ('localhost', 1234), but it isn't successfull. Is is any way to do that?

Re: IndexedCatalog and ZEO

2005-03-07 Thread Almad
Leif K-Brooks wrote: > from IndexedCatalog.Shelf import Shelf > shelf = Shelf(('localhost', 1234), [Class1, Class2]) Thanks, that is what I was searching for. -- Lukas "Almad" Linhart [:: http://www.almad.net/ ::] [:: Humans are too complicated to be described with words. ::] [:: PGP/GNUPg key

Re: IndexedCatalog and ZEO

2005-03-06 Thread Diez B. Roggisch
> I'm trying to use IndexedCatalog > [http://www.async.com.br/projects/IndexedCatalog/] in my CherryPy > [http://www.cherrypy.org] application. > As Zodb support access just from one Python thread, I must either use just > one CherryPy thread (slow), or use ZEO. However, if I understand it good, >

Re: IndexedCatalog and ZEO

2005-03-06 Thread Leif K-Brooks
Almad wrote: Hello, I'm trying to use IndexedCatalog [http://www.async.com.br/projects/IndexedCatalog/] in my CherryPy [http://www.cherrypy.org] application. As Zodb support access just from one Python thread, I must either use just one CherryPy thread (slow), or use ZEO. However, if I understan

IndexedCatalog and ZEO

2005-03-06 Thread Almad
Hello, I'm trying to use IndexedCatalog [http://www.async.com.br/projects/IndexedCatalog/] in my CherryPy [http://www.cherrypy.org] application. As Zodb support access just from one Python thread, I must either use just one CherryPy thread (slow), or use ZEO. However, if I understand it good, wh