What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hey! I need to make HTTP requests directly from Yves controller. Yeah, it’s a little bit weird but b

U0310RKK9U7
U0310RKK9U7 Posts: 5 🧑🏻‍🚀 - Cadet

Hey! I need to make HTTP requests directly from Yves controller. Yeah, it’s a little bit weird but believe me I really need to. It is desirable to cache the result of this request in order to reduce the time of the entire operation. Do we have something like a quickly accessible system level cache to inject into the Yves controller?

Comments

  • Alberto Reyer
    Alberto Reyer Posts: 690 🪐 - Explorer

    You could write a service that uses the storage client and the guzzle http client to retrieve data from the redis cache or from an http call when it is not present in the redis cache.

  • U0310RKK9U7
    U0310RKK9U7 Posts: 5 🧑🏻‍🚀 - Cadet

    Oh, yeah, using storage seems reasonable and OOTB solution. Thank you! As for Guzzle… Strange, but I could not find it yesterday in composer.lock But found Symfony HttpClient. So in the end I built a solution with Symfony Cache and Symfony HttpClient. I’ll consider rewriting it for using storage. Thanks again!