RE: Memory usage of CF objects.

2001-03-05 Thread Grahame Armitage
Thanks, that's just what I wanted to hear - makes it _so_ much easier. ;-) Grahame -Original Message- From: Michael Smith [mailto:[EMAIL PROTECTED]] Sent: 03 March 2001 02:55 To: CF-Community Subject: Re: Memory usage of CF objects. To CF all data is string - so the difference be

Re: Memory usage of CF objects.

2001-03-02 Thread Michael Smith
stion can afford > it ;-) > > Cheers, > > Grahame > > -Original Message- > From: Michael Smith [mailto:[EMAIL PROTECTED]] > Sent: 01 March 2001 19:31 > To: CF-Community > Subject: Re: Memory usage of CF objects. > > I don't but here is a guess. Add

RE: Memory usage of CF objects.

2001-03-02 Thread Grahame Armitage
in question can afford it ;-) Cheers, Grahame -Original Message- From: Michael Smith [mailto:[EMAIL PROTECTED]] Sent: 01 March 2001 19:31 To: CF-Community Subject: Re: Memory usage of CF objects. I don't but here is a guess. Add up the length of all the variables in your structure. Add

Re: Memory usage of CF objects.

2001-03-01 Thread Michael Smith
I don't but here is a guess. Add up the length of all the variables in your structure. Add an extra 4 bytes for pointers. Sum this up. That is memory used for each user. Multiple by the average number of concurrent users to get total used. If you have a long session time out allow for that too.

Memory usage of CF objects.

2001-03-01 Thread Grahame Armitage
Hi, Does anybody happen to know how I can find out the memory usage of objects in CF The reason I'm asking is we hold a fair bit of info in a structure and are wanting to change the IDs from int's into UUID's and are worried about how much this will affect the memory usage on the server. If any