Answer the question
In order to leave comments, you need to log in
Run functions asynchronously with getting result (php)?
The engine implements the loading of prices from suppliers via the API. Prices are loaded at the moment the client requests the goods. (No, you can’t request once a day/hour/minute)
Now there are 3 suppliers working, and the lowest price is displayed. The problem is that requests to suppliers go one by one, and take 5-20 seconds. And that is, before receiving the price, the client waits 5-20 seconds for the page to load (I had to make a preloader so that the client did not think that the site was "hanging"). I want to make requests to suppliers go asynchronously. Is it possible to run 3 functions at the same time, and when all 3 providers respond, write the result to an array and continue working?
(now 2 providers work via Json, POST request. And one SOAP request returns XML)
Answer the question
In order to leave comments, you need to log in
curl_multi или какая-нибудь обёртка поверх - сам по себе не очень удобен.
С soap сложнее. Можно поковырять nusoap реализацию, нельзя ли вытянуть curl_exec во внешний мир.
Можно уйти в модные микросервисы: написать для каждого поставщика транзитный микросервис, который делает запрос к его апи, перекодирует в ваш внутренний формат. Мультикурлом запросить ваши микросервисы. Поставщик, соответственно, может давать любое синхронное апи, вы всё равно сможете всех опрашивать одновременно.
Можно порыться и именно в многопоточный код, pecl pthreads даёт такую возможность в php.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question