This is something I have been wondering about. Is it faster to have MySQL handle my md5 hashing or should I let PHP handle it?
| show 3 more comments |
|
just comparing the performance, there won't be any noticeable difference (i think the mysql-implementation will be a very very [...] tiny little bit faster). try to use the solution that results in more redable (and that way easier maintainable) code. for me, this is doing things like hashing in php, but i don't know what your code looks like, so maybe letting mysql do the job is easier for you. PS: if you're using this for passwords, think about using another algorithm for hashing (sha256 for example). for more information, take a look at wikipedia and read about collisions. |
|||||
|
|
Actually I think the MySQL MD5 implementation will be faster. PHP's native Make your own benchmarks though. See this page (Comment at the bottom).
|
|||||
|
|
Do some profiling to find out. But it you are having serious performance issues remember the 80-20 rule. It is then best to first find out where the bottle necks are. My gut feeling is there is not a lot in it. Personally I would put the MD5 with MySql - keep the business logic together. |
|||
|
md5will be for passwords, do not think faster, think slower (the likes ofbcrypt)! – Shef Sep 12 '11 at 9:19