반응형
It's like JSON. but fast and small.


MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON but it's faster and smaller. For example, small integers (like flags or error code) are encoded into a single byte, and typical short strings only require an extra byte in addition to the strings themselves. If you ever wished to use JSON for convenience (storing an image with metadata) but could not for technical reasons (encoding, size, speed...), MessagePack is a perfect replacement.



http://msgpack.org/ 






반응형

'html' 카테고리의 다른 글

sub menu show/hide  (0) 2012.02.07
반응형

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ko" dir="ltr"> <head> <title>test</title> <script type="text/javascript" language="javascript"> <!-- function subShow() { for ( var i=1; i <= 4 ; i++ ) { var menuDivObj = document.getElementById("box" + i); menuDivObj.style.display = "none"; } } function subHide() { for ( var i=1; i <= 4 ; i++ ) { var menuDivObj = document.getElementById("box" + i); menuDivObj.style.display = "block"; } } //--> </script> </head> <body> <img onmouseover="subHide();" onmouseout="subShow();" src="main_menu_04.jpg" alt="sub menu test" /> <div id=box1 style="display:none;">box1</div> <div id=box2 style="display:none;">box2</div> <div id=box3 style="display:none;">box3</div> <div id=box4 style="display:none;">box4</div> ........



반응형

'html' 카테고리의 다른 글

message pack  (0) 2013.04.08

+ Recent posts