node comes with abundance of method to create Buffers, but I haven't found one that dealocated the allocated piece of memory.
Do I just set buffer to null when I am done using it and let garbage collection kick in?
var buffer = new Buffer("pls dont null me");
buffer = null;