Jump to content

[APP] Seeder - Reduces lag in Android.


Recommended Posts

Guest utternoob
Posted

Nice find. I'll try it. How does it do what it does?

Guest tilal6991
Posted

It definitely makes a difference. I'm pretty sure its not just placebo. I tested it on CFX3 and there seems to be a tangible speed improvement. The reason for it and the patch makes genuine sense as well.

Guest utternoob
Posted

Is it possible to integrate it into further builds?

Guest DJPRMF
Posted

I open the app and just appears two options. I enable, but after exit and enter again in the app, the option is disable again...

Is that fine?

Guest razzmataz1478
Posted

Is it possible to integrate it into further builds?

The developer says you're allowed to so why not..

Guest tilal6991
Posted

I think I'm going to have to. The speed difference I can feel is enough to convince me to include it.

Guest omegavesko
Posted

I think I'm going to have to. The speed difference I can feel is enough to convince me to include it.

Awesome, so it isn't just me after all.

Guest utternoob
Posted

I've noticed it on C3C0 CM10 ROM. Seems so much faster than stock, even in app draw

Guest razzmataz1478
Posted

Very noticeable difference in PAC. Recent populate instantly, launcher is smoother and apps launch quicker. Well done to the dev.

Posted (edited)

Theres a few methods to acheive what should be the same result (entropy over 1300). For example heres an init.d script:

#!/system/bin/sh

# Entropy tweak

PSIZE=$(cat /proc/sys/kernel/random/poolsize)

PSIZE=$((PSIZE/3))

echo $PSIZE > /proc/sys/kernel/random/read_wakeup_threshold;
It should save battery compared to the application as it doesn't wake the phone at all and has no service running. -EDIT- You can also symlink:
#!/system/bin/sh

# Entropy tweak

rm /dev/random;

ln -s /dev/urandom /dev/random;
Or just recreate it as urandom:
#!/system/bin/sh

# Entropy tweak

rm /dev/random;

mknod /dev/random c 1 9;

The "issue" was closed here: http://code.google.c...detail?id=42265

Edited by H3ROS
Guest razzmataz1478
Posted
Theres a few methods to acheive what should be the same result (entropy over 1300). For example heres an init.d script:

#!/system/bin/sh

# Entropy tweak

PSIZE=$(cat /proc/sys/kernel/random/poolsize)

PSIZE=$((PSIZE/3))

echo $PSIZE > /proc/sys/kernel/random/read_wakeup_threshold;
It should save battery compared to the application as it doesn't wake the phone at all and has no service running. -EDIT- You can also symlink:
#!/system/bin/sh

# Entropy tweak

rm /dev/random;

ln -s /dev/urandom /dev/random;
Or just recreate it as urandom:
#!/system/bin/sh

# Entropy tweak

rm /dev/random;

mknod /dev/random c 1 9;

The "issue" was closed here: http://code.google.c...detail?id=42265

Good find.

Guest Simon O
Posted

The app 'works' because it uses a daemon process that "keeps the device's I/O in constant use (which in turn, depending on device, will make the CPU stick to higher clock frequencies to keep up and/or ramp up the IO scheduler)." - quote from a CyanogenMod developer

Remove the app and use the fix manually as above. Then see if you have an improvement or not.

Guest razzmataz1478
Posted

Spanish people tell your friends over at HTCMania that this doesn't really work.

Guest omegavesko
Posted

Makes sense I suppose, but saying it's like using the performance governor is just as wrong. It doesn't lock it on the maximum frequency like the governor does.

Guest razzmataz1478
Posted
Makes sense I suppose, but saying it's like using the performance governor is just as wrong. It doesn't lock it on the maximum frequency like the governor does.

Yeah..I've realised. :)

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.