RAM usage
#2
Hi, welcome to the forum.

The world data. The minecraft world is 256 blocks high and each client "sees" 10 chunks in each direction. This means a 21x21 area of chunks needs to be loaded for each player; each chunk having 16x256x16 blocks. Each block needs 1 byte of BlockType, 1/2 byte of BlockMeta and 1 byte of lighting data. Multiply all these together and you get the base memory usage:
21 * 21 * 16 * 256 * 16 * 2.5 = 72253440 = 70560 KiB ~ 68.9 MiB

Here's a minecraft wiki article on Chunks, to give you the overview: http://minecraft.gamepedia.com/Chunk
Reply
Thanks given by:


Messages In This Thread
RAM usage - by LilleCarl - 03-24-2014, 08:03 PM
RE: RAM usage - by xoft - 03-24-2014, 10:05 PM
RE: RAM usage - by LilleCarl - 04-03-2014, 04:30 AM
RE: RAM usage - by LogicParrot - 04-07-2014, 06:10 PM
RE: RAM usage - by bearbin - 04-07-2014, 06:45 PM
RE: RAM usage - by LogicParrot - 04-07-2014, 06:52 PM
RE: RAM usage - by bearbin - 04-07-2014, 08:24 PM
RE: RAM usage - by LogicParrot - 04-07-2014, 08:27 PM
RE: RAM usage - by bearbin - 04-07-2014, 08:28 PM
RE: RAM usage - by LogicParrot - 04-07-2014, 09:05 PM
RE: RAM usage - by xoft - 04-08-2014, 12:43 AM
RE: RAM usage - by LogicParrot - 04-09-2014, 12:28 AM



Users browsing this thread: 1 Guest(s)