Someone can explain me the difference from Memcache and Memcached in PHP environment? What are the advantages of one over the other? Can you also suggest that the criteria used to choose between one or the other?
feedback
|
|
| |||
|
feedback
|
|
(PartlyStolen from ServerFault) Here is a quick backgrounder in naming conventions (for those unfamiliar), which explains the frustration by the question asker: For many *nix applications, the piece that does the backend work is called a "daemon" (think "service" in Windows-land), while the interface or client application is what you use to control or access the daemon. The daemon is most often named the same as the client, with the letter "d" appended to it. For example "imap" would be a client that connects to the "imapd" daemon. This naming convention is clearly being adhered to by memcache when you read the introduction to the memcache module (notice the distinction between memcache and memcached in this excerpt):
The frustration here is caused by the author of the PHP extension which was badly named memcached, since it shares the same name as the actual daemon called memcached. Notice also that in the introduction to memcached (the php module), it makes mention of libmemcached, which is the shared library (or API) that is used by the module to access the memcached daemon:
In summary, both are functionally the same, but they simply have different authors, and the one is simply named more appropriately than the other. | ||||
|
feedback
|
|
They are not identical. Memcache is older but it has some limitations. I was using just fine in my application until I realized you can't store literal Because of this limitation I switched to storing empty arrays instead of | |||
|
feedback
|