top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How Memcached structured in queryhome?

+2 votes
554 views

Wanted to know how QueryHome is using memcached with PHP and mysql?

posted Jun 8, 2014 by Mithun Kumar Muddan

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

In short we are not using memcached at QueryHome, Its very difficult to explain the full architecture here but we are relying CDN for speedup and global variable which we use to avoid the db access.

Let me see if we can make our CDN generation code public.

answer Jun 8, 2014 by Salil Agrawal
CDN is also good in optimization :)
will be waiting for GNU code
I checked its a big code not feasible over here sorry. I can share on CD if we meet sometime...
Similar Questions
+1 vote

The concepts of the two seem very similar. How do the two compare and contrast? In simple terms, what applications are best for each?

+2 votes

When I'm running PHP+memcache, I cannot store values into memcache. My PHP version is 5.4.12 and memcache version is 3.0.8

I am setting ini_set('display_errors', true); and error_reporting(E_ALL); and getting the notice:

Notice: MemcachePool::set(): Server 127.0.0.1 (tcp 11211, udp 0) failed
with: Network timeout (0) in xxx/test/my_test.php
on line XX

and when I try to use the "telnet 127.0.0.1 11211". It show like this:

$ telnet 127.0.0.1 11211
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
stats

there's no any response... Does anyone have any idea...

...