What is the difference between InnoDb tables and MyIsam
Tables in php
Answer / rameshfromind
InnoDB
=======
InnoDB is commonly viewed as anything but performant,
especially when compared to MyISAM. Many actually call it
slow. This view is mostly supported by old facts and
mis-information. In reality, you would be very hard-pressed
to find a current, production-quality MySQL Database Engine
with the CPU efficiency of InnoDB. It has its performance
"quirks" and there are definitely workloads for which it is
not optimal, but for standard OLTP (Online Transaction
Processing) loads, it is tough to find a better, safer fit.
1.Performance
2.Concurrency
3.Reliability
4.Data Security
MyISAM
======
1.Simplicity
2.Optimization
3.Resource Usage
| Is This Answer Correct ? | 0 Yes | 1 No |
what is PHP accelerator ?
Explain some of the php array functions?
What is the most convenient hashing method to be used to hash passwords?
How can we extract string 'techinterviews.com' from a string 'http://www.techinterviews.com' using regular expression in PHP?
What is return value in php?
Is php an object or array?
What are the difference between include_once & Require_once?
Is c similar to php?
How would you determine the size of a file in php?
what the new feature add in php 7.2?
How do I find environment variables?
What does a dependant variable mean?