26.12.2015, 12:41
Quote:
Why would you cache it? Do you really want to use it all in one single command without multi-threading your queries? If that's really necessary for you, then use y_inline library from YSF or just create a public for SELECT queries. If you need to understand threaded queries, then ****** it and find out everything you need. It is recommended to DO NOT do it your way.
|
Quote:
It's highly recommended to thread all your queries (even INSERT & UPDATE). Use cache_delete() if you don't need the query's result anymore or you will experience memory leaks. |
I am still pretty confused with it, I'd appreciate if you can explain me tad more.