Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Apparantly Vim can edit 2GB on 32-bit machines (swap and backup disabled). But for 64-bit machines, what is the limit?

share|improve this question
The link merely says "2147483647 bytes (2 Gbyte) when a long integer is 32 bits. Much more for 64 bit longs." – mt3 Sep 18 '12 at 6:26

1 Answer

The documentation just states this:

Maximum file size 2147483647 bytes (2 Gbyte) when a long integer is 32 bits. Much more for 64 bit longs. Also limited by available disk space for the |swap-file|.

so "much more" will most likely run into your hard drive limitation since it goes to exabytes of alocatable size.

share|improve this answer
1  
guess: as 2147483647 is 2 ^ 32 / 2 - 1, then the answer should be 2 ^ 64 / 2 - 1 = 9223372036854775807 bytes or 8 exabytes minus 1 byte. Am i right? – sindikat Sep 18 '12 at 6:31
sindikat was so kind to also supply the link to my really long (pun intended) answer and his calculation should be pretty accurate. In this kind of "memory" size I become lazy and just thay "woah that freaking huge" ;-) – Najzero Sep 18 '12 at 7:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.