Hello,
rotation and antibyte are doing a great job on their modded kernel release
witch features an activated compcache. (based on fards ab kernel mod,
here is rotations github)
I am using one of their releases and it is the best kernel (at least for me)
when it comes to running the Flashback 10 ROM. I have been using it with activated
compchace since weeks now and it does help a lot in therms of multitasking.
If you ant to try it out, just install one of therir kernels and load a script
like this here:
Code:
#!/system/bin/sh<br />
insmod /system/lib/modules/lzo_compress.ko;<br />
insmod /system/lib/modules/lzo_decompress.ko;<br />
insmod /system/lib/modules/zram.ko num_devices=2;<br />
echo 26214400 > /sys/block/zram0/disksize;<br />
echo 26214400 > /sys/block/zram1/disksize;<br />
mkswap /dev/block/zram0;<br />
mkswap /dev/block/zram1;<br />
swapon -p 100 /dev/block/zram0;<br />
swapon -p 100 /dev/block/zram1; <br />
echo 60 > /proc/sys/vm/swappiness;
It is bacially what rotation had suggested on his
[email protected]lfe.de .
Different is just a decreased ammount of ram used by compcache and
an increased value for the swappiness in order to use the cache more
freqently.
Bacially its a trade. One trades cpu performance against more RAM. For
most of my applications the cpu is more then fast enaugh, but RAM is
always not enaugh available. So its a fair deal for me.