use information_schema; -- 查询一个数据库存储大小 select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where table_schema='database nane'; 85MB -- 查询一个表存储大小 select concat(round(sum(data_length/1024/1024),2),'MB') as data from tables where…
测试代码 for(var ii = 0; ii< 5000;ii++){ if (!window.ia) window.ia=0; window.ia++; var s = 'a'+window.ia+'='; for (var i = 0; i < 4000;i++) s+='' +parseInt(Math.random()*10); s+= ';'; //alert(s.length); document.cookie = s; } 经过测试(ie10,firefox22,chrome)…
/*! * jQuery Cookie Plugin v1.4.0 * https://github.com/carhartl/jquery-cookie * * Copyright 2013 Klaus Hartl * Released under the MIT license * Usage Create session cookie: $.cookie('the_cookie', 'the_value');Create expiring cookie, 7 days from then:…