Facebook api schedule and maintain connections

We want to reduce the latency of https connections to facebook county servers. We configured our servers to support http. However, it looks like the connection is closed after every call (from the traffic server logs ...).

Is there a way to deterministically see if keep_alive connections are being honored or not using graph.facebook.com? .. or any server at all?

+3


source to share


1 answer


Based on Facebook's attitude towards effective queries, I would not expect them to honor any persistent connection. Moreover, your request will end up with a performance hit on your servers.



You should look at getting as much data as possible by bundling your requests into one batch request .

+1


source







All Articles