lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


It was thus said that the Great Geoff Smith once stated:
> 
> To answer the question on specs. I am using an 80Mhz Freescale Coldfire
> chip, it has got a few Megs of ram allocated for Lua, cant remember the
> exact figure, but well less than 10 Megs. I am using just bog standard Lua
> 5.1.5

  Don't forget you can always check Lua's memory usage with

	x = collectgarbage('count')

which returns the amount of memory Lua is using in kilobytes.

  But 10M is quite a bit of memory.  

  -spc