Maksim Fedotov

Results 93 comments of Maksim Fedotov

@ThornWalli It doesn't look like the library is maintained - so I recommend forking this code, which is what I did. It works without issues now

I'd love to know more as well, as I was looking into adding this, but docs have confused me... I am also not sure if I need to wrap everything...

> GitHub should have an OOO feature that allows someone to sub in to get my notifications I've heard many maintainers ask for that, definitely tough one. But I've heard...

That is unfortunate, as I don't plan on making it SSR. It's probably worth adding a note that it's SSR-only functionality then, as I don't believe there was a mention...

Actually, a quick follow-up - what is the reason it's not possible without SSR? I've just managed to make it work by manually injecting into head after the first element...

That's fair - I'll stick to my custom solution, as it's simply adding and removing an image preload tag, so it's easy to add and then remove without false positives....

I've been having this issue for awhile myself, just as @drale2k described. Even with increased timeout and retries: ```rb MeiliSearch::Rails.configuration = { meilisearch_url: ENV.fetch('MEILISEARCH_URL', nil), meilisearch_api_key: ENV.fetch('MEILISEARCH_API_KEY', nil), timeout: 5,...

@ellnix Out of curiosity - Is there any reason to use httrb directly instead of using something like [Faraday](https://github.com/lostisland/faraday)? As it provides adaptors for different middleware, you could test both...

Yup - Faraday is extensible, you should have everything you need, from retries with backoff to serialisation goodies. Leaving this here, so you can take a look when you get...

This is something else I am looking to do, I have very similar requirements as @yk1711. If this is still in development, how did you manage to get it working...