[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Fastest way to transfer data from C to Lua ?
- From: Sean Conner <sean@...>
- Date: Sat, 8 Jun 2013 17:14:36 -0400
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