Sorun bir SSL güvenli sunucu hızlı bağlantı yapabilen, bir uygulama (muhtemelen PHP?) Geliştirmek ve ondan veri almak / göndermek istiyorum, ne olduğunu. Amacım bu sorgu göndermek ve mümkün olduğunca çabuk sonuç okumak yapmaktır. Ben çeşitli çözümler çalışıyor ve hepsini kıyaslama ediyorum. Ben (fsockopen denedim) ve ben onları geliştirmek nasıl herhangi bir çözüm varsa CURL, ancak, merak?
Results are as follows: fsockopen():
- Başlıkları gönderdi: ,26755499839783;
- Sayfa aldı: ,48934602737427;
CURL sonuçlar:
- [TOTAL_TIME] => 0.484
- [Pretransfer_time] => 0.281
- [Starttransfer_time] => 0,437
Questions are: 1) When the query is started to execute on the server, to which I connect - after headers are sent or after I get the page and connections closes? 2) Which is the exect time of CURL to which I should compare the fsockopen() result? Is starttransfer_time even before the headers are sent to server? This would mean that fsockopen() is faster, isn't it? 3) Any solutions how to tweak SSL connectivity on the server, on which the code is executed? Any tweaks possible to OpenSSL module of PHP (any possible downgrades of crypto?) to make it faster? 4) Any solution to go without SSL to SSL secured server? 5) Would C++ or other solution be any quicker in this case?
Herhangi bir fikir bekliyoruz :) Ben bu "ms" ırk tarafından saplantı var :)
Thanks, Jonas