How can wordpress works without transactions?
In wordpress there are tags. So when a user insert a post, wordpress have to do at least 2 queries ( insert in the POST table and insert in the POST_TAG table ).
How can this works good without using transactions ( and so innodb ) ?
I am wondering this because I am designing a similar project with POST and TAG tables and a many to many relationship and I can't use innodb.
Solutions
Wordpress isn't often used in environments where there are a lot of concurrent users posting articles at the sametime. Where as, an open blogging platform like blogger.com is used by millions of users at once.
So a collision of transactions isn't likely to happen for the average
Wordpress user
.
Similar questions
http://localhost:8080/ works, http://127.0.0.1:8080/ doesn't works why?
What gives? When I view the page as "http://localhost:8080/" from the local machine, I can create the first (administrator) account and login without any problem. However, when I view the page from any other machine via it's public and/or private IPs, or even http://127.0.0.1:8080/ LOCALLY, I experience the "can't login or create the first (adminis...
Is wordpress SEO friendly url works without using htaccess?
Wordpress uses friendly seo url without using htaccess. Can any explain this to me please how they do it. The only way i can think of is to do something like this. domain.com/index.php/nnn/mmmm/ But wordpress does not use index.php I know they are not using htaccess. Please let me know. Thank you.
JQuery Equal Height in Rows Conflicts Only Works without Registering wp_footer();
I am trying to make may own Wordpress theme. I want the scenario of blogpost lost DIVs blocks are equal in rows. I am using very cool JQuery tutorial from CSS-Tricks to make it happens. Here is the tutorial http://css-tricks.com/equal-height-blocks-in-rows/ I am enqueuing JQuery/JS in functions.php as follows : But the result only works if I omit &...
Also ask