Why Android-Volley is faster

lingareddyk

I am evaluating the Volley networking library for using in my next project as I heard many good things about it. I found that it makes implementing network operations easy. But it's also claimed that it makes networking faster. Can someone please explain how?

Dave

It doesn't increase the speed of the networking itself, but it has good support for local caching and response compression, which are things that the standard Java/Apache HTTP classes don't handle for you.

The result is the perception of increased performance, and also lower battery usage (due to fewer network fetches).

Having adopted Volley for my own projects over the past few weeks, I can firmly recommend it!

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related