11-01-2011, 07:01 AM
11-01-2011, 07:49 AM
Do you mean, run a 64-bit OS?
If so, all you need is a x64 capable CPU - pretty much most CPUs made in the last 6 years support x64, starting with the AMD64 and Pentium 4 Prescott lines (with the exception of some Intel Atom CPUs, IDK about Bobcat).
In terms of recommended requirements, you'll probably want to consider if you have enough RAM, since 64-bit will consume more than 32-bit (so, for a low end VPS, 32-bit is probably better in most cases).
If so, all you need is a x64 capable CPU - pretty much most CPUs made in the last 6 years support x64, starting with the AMD64 and Pentium 4 Prescott lines (with the exception of some Intel Atom CPUs, IDK about Bobcat).
In terms of recommended requirements, you'll probably want to consider if you have enough RAM, since 64-bit will consume more than 32-bit (so, for a low end VPS, 32-bit is probably better in most cases).
11-02-2011, 06:56 AM
Does the 32-bit system (normally) has an ability to save a number to the max value of the Int Unsigned data type, Yumi?
11-02-2011, 08:56 AM
Are you refering to PHP?
I'm not sure what MySQL does - their integer types are probably fixed (but you can verify from the documentation).
The traditional definition of an integer is 32-bits long, which is probably what MySQL uses.
PHP's integer type is always signed, so a 32-bit PHP will only be able to use signed 32-bit integers (anything outside the range get auto-converted to double precision float). So in this case, it can't fully address the range of a 32-bit unsigned integer (without using floats).
I'm not sure what MySQL does - their integer types are probably fixed (but you can verify from the documentation).
The traditional definition of an integer is 32-bits long, which is probably what MySQL uses.
PHP's integer type is always signed, so a 32-bit PHP will only be able to use signed 32-bit integers (anything outside the range get auto-converted to double precision float). So in this case, it can't fully address the range of a 32-bit unsigned integer (without using floats).
11-03-2011, 07:12 AM
Ah, yes. Thank you very much for the explanation, Yumi