RE: [Newbies] Re: Object -- some string ObjectIdentity

2008-05-02 Thread Ramon Leon
I generate an id for my domain objects in initialize. All my domain objects answer to #id, see my SandstoneDb package on SqueakSource. For WAComponents, I don't bother, if I need an id for ajax purposes I use either html nextId, or use my domain objects id with some prefix or

[Newbies] Linux locks up when handling large data sets

2008-05-02 Thread squeak414
Hi, I've been testing Squeak's ability to handle large amounts of data. This snippet: testArrayFilling | startTime endTime iArray jArray kArray | iArray := Array ofSize: 100. 1 to: 100 do: [:i | jArray := Array

[Newbies] How to increase size of Transcript

2008-05-02 Thread Milan Zimmermann
When writing to Transcript using Transcript show:, after certain amount is put on the Transcript, the screen gets cleaned, keeping only about 10K of text. Is there a way to increase the amount of text Transcript keeps before cleaning? Thanks Milan PS: I tried to inspect the Transcript

Re: [Newbies] Linux locks up when handling large data sets

2008-05-02 Thread johnps11
Hi Stan! Have you tried using the -mmap option when starting Squeak? I notice that according to the squeakvm man page: squeak uses a dynamic heap by default with the maximum size set to 75% of the available virtual memory or 1 gigabyte, whichever is smaller. Perhaps Windows doesn't have

Re: [Newbies] How to increase size of Transcript

2008-05-02 Thread Michael Davies
On Fri, May 2, 2008 at 5:49 PM, Milan Zimmermann [EMAIL PROTECTED] wrote: When writing to Transcript using Transcript show:, after certain amount is put on the Transcript, the screen gets cleaned, keeping only about 10K of text. Is there a way to increase the amount of text Transcript keeps

Re: [Newbies] How to increase size of Transcript

2008-05-02 Thread Milan Zimmermann
On 2008 May 2, Milan Zimmermann wrote: When writing to Transcript using Transcript show:, after certain amount is put on the Transcript, the screen gets cleaned, keeping only about 10K of text. Is there a way to increase the amount of text Transcript keeps before cleaning? ah, i found it.