removed html_mode in favour of "data URI scheme"
[uzbl-mobile] / docs / performance
1 The usage of external scripts causes some slowdowns. (forking new processes, running interpreted scripts,...)
2 It can be interesting to keep an eye on this, though I don't expect major problems.
3
4 ** History file size/performance
5 each new pageload -> fopen(history_file, "a"), fwrite one line, fclose.
6 I use utf8, so unless you use characters that are "special" (chinese etc) each character takes 1 byte.
7 So, assume each entry is about 80 chars, you visit 100 pages per day (?), and you wonder when your history file will be 50MB big:
8 (50 * 1000 * 1000 ) / ( 80 * 100 ) = 6250 days or 17 years.
9 There is code to run a benchmark in the 'extra' dir.  For results & interpretation, see http://dieter.plaetinck.be/poor_mans_dmenu_benchmark