[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

string size limit?

Rand Waltzman

10/6/2006 11:23:00 AM

Does Ruby impose a limit on the size of a string? What about the size
of an array?

Thanks in advance.

Rand

--
Posted via http://www.ruby-....

1 Answer

Kalman Noel

10/6/2006 11:33:00 AM

0

Rand Waltzman:
> Does Ruby impose a limit on the size of a string?

As it seems, it doesn't:

irb(main):009:0> 'a' * 1_000_000_000; nil
=> nil

# RAM and swap weren't pleased by the above.

irb(main):010:0> GC.start
=> nil

# Now they are able to take a breath again.

Kalman