Re: Passing sequences to functions & procedures / Memory limits in openEuphoria?
- Posted by LarryMiller Oct 07, 2013
- 1811 views
In a 32 bit OS the practical limit to how large a sequence you can use is imposed by the size of virtual address space that can be allocated. The size of the private virtual address space is 2 GB, independent of RAM size. The largest block that can be allocated will be substantially less than that, possible much less. The usage patterns of the sequence and RAM size will determine performance.
To exceed these limits you would need to use a 64 bit OS and 64 bit version of Euphoria.
In practice these limits are unlikely to be a problem.