memory usage by objects in common lisp

Posted by Farzad Bekran on Stack Overflow See other posts from Stack Overflow or by Farzad Bekran
Published on 2012-09-01T18:58:34Z Indexed on 2012/09/02 9:38 UTC
Read the original article Hit count: 230

Is there a way to find out how much memory is used by an instance of a class or basic data types in general?

I have a toy webframework in cl that creates and manages web pages with instances of classes that represent the html tags and their properties, and as they are supposed to make an html page, they have children in a slot called children. so I was thinking how much a user's session will cost the server if I take this approach. Thanks.

© Stack Overflow or respective owner

Related posts about memory-management

Related posts about common-lisp