Re: [Pharo-users] smalltalkhub is down ?

2013-08-14 Thread Esteban Lorenzano
I restarted it. ... and scheduled a task to see what is happening with him :) Esteban On Aug 15, 2013, at 7:54 AM, Tudor Girba wrote: > Yes, I see the problem, too, since about 10 hours. > > Cheers, > Doru > > > On Thu, Aug 15, 2013 at 3:29 AM, Gisela Decuzzi > wrote: > Hello I've been wo

Re: [Pharo-users] smalltalkhub is down ?

2013-08-14 Thread Tudor Girba
Yes, I see the problem, too, since about 10 hours. Cheers, Doru On Thu, Aug 15, 2013 at 3:29 AM, Gisela Decuzzi wrote: > Hello I've been working during the day but seems down right now. > http://www.downforeveryoneorjustme.com/http://smalltalkhub.com says I'm > not alone, anyone else has the sa

Re: [Pharo-users] smalltalkhub is down ?

2013-08-14 Thread Gisela Decuzzi
Hello I've been working during the day but seems down right now. http://www.downforeveryoneorjustme.com/http://smalltalkhub.com says I'm not alone, anyone else has the same problem? 2013/8/8 Yuriy Tymchuk > All day have passed ;) Now it's up. > > uko > > On 8 серп. 2013, at 20:35, Ihor Mykhalev

Re: [Pharo-users] Voyage: Circular references

2013-08-14 Thread Sabine Knöfel
Hi Esteban, this would be fine! A few minutes ago, I wrote another thread here with some questions about memory. And after sending it now I got the following message from pharo "Space is low Warning! Pharo is almost out of memory. " So, if you could tell something about memory usage in you

Re: [Pharo-users] Voyage: save Date, get back DateAndTime - bug?

2013-08-14 Thread Sabine Knöfel
Hi Esteban, thanks for the quick reply, I wil hack it back. ;-) Sabine On Wed, Aug 14, 2013 at 11:50 AM, EstebanLM [via Smalltalk] < ml-node+s1294792n4703609...@n4.nabble.com> wrote: > Hi Sabine, > > that's a known issue... from mongodb :) > > Mongo does not recognize between Date and DateAndT

Re: [Pharo-users] Voyage: Circular references

2013-08-14 Thread Esteban Lorenzano
On Aug 13, 2013, at 4:58 PM, Sabine Knöfel wrote: > Hi Esteban, > > thanks, this works fine now! > > You also answered my next question how to define an attribute as transient > -> with VOMongoTransientDescription :) > > Your blog posts > http://smallworks.com.ar/web/blog?_k=c9RiCz1d5w-0XSbp

Re: [Pharo-users] Voyage: save Date, get back DateAndTime - bug?

2013-08-14 Thread Esteban Lorenzano
Hi Sabine, that's a known issue... from mongodb :) Mongo does not recognize between Date and DateAndTime, so even if you commit a Date, you will have back a DateAndTime. Only way I know to deal with that is by transforming it manually :( cheers, Esteban On Aug 14, 2013, at 11:44 AM, Sabine K

[Pharo-users] Voyage: proxy/memory questions

2013-08-14 Thread Sabine Knöfel
Hi Esteban, All, could you please give me some little explanations about the mechanism between the database and the objects in my image: 1) I see that after VOMongoRepository allInstancesDo: #reset. all objects are re-loaded from mongo, is this correct? 2) How can I ask voyage to only re-load

[Pharo-users] Voyage: save Date, get back DateAndTime - bug?

2013-08-14 Thread Sabine Knöfel
Hi Esteban, All, when saving an instance of *Date* within an attribute with voyage into Mongo and doing VOMongoRepository allInstancesDo: #reset. then loading the object back from database, I get an inst of *DateAndTime* in this attribute. Of course, I can "hack" by the tools you gave me :-)