This morning was the first time I ever opened WebComic + Inkblot, the first thing I did was look at the code.   Let me show you what I found.  ComicPress 3.0 vs WebComic + Inkblot 2.1.1

I wanted to test the page load and memory usage of both systems that are just straight bare-bones upon installation.  I added the following to the footer of Inkblot since it didn’t have it to ‘show’ it’s users.

	<p><?php echo get_num_queries() ?> queries. <?php  $unit=array('b','kb','mb','gb','tb','pb'); echo @round(memory_get_usage(true)/pow(1024,($i=floor(log(memory_get_usage(true),1024)))),2).' '.$unit[$i]; ?> Memory usage. <?php timer_stop(1) ?> seconds.</p>

What this line does is give the amount of SQL queries that the system uses, how much memory it uses and how long it took for the page to compile and load PER USER ACCESS.  Without any extra added plugins.  Take note though this is done on a server with opcode cache’ing to begin with, while ComicPress knows how to deal with Memory, WebComic does not.

OpCode Cache’ing cache’s the PHP code, it is the preferred way of cache’ing if you have it available.

Let’s start with ComicPress (to try to be more fair I set it to the 3C theme so it had 2 sidebars there WITH default widgets that load):

47 Queries, 3.25MB Memory Usage, 0.117 seconds load time.

Now let’s look at InkBlot (no default widgets loading only one sidebar active)

Oh wait, you CANT, Inkblot requires a Plugin to actually work.   ComicPress does not, you name the files put them in the comics directory and associate the categories in the comicpress-config.php and that’s all you need for a functioning working system.

So moving on, I added the WebComic Plugin and now its:

54 Queries, 15.75 MB mem used and loads in 0.574 seconds

I’m sorry, why? ^ clearly wtf.   Just to be fair I activated ComicPress Manager.

47 Queries, 3mb mem usage and load time of 0.175 seconds.

Moving on.

Pages: 1 2 3 4