Kaique Anarkrypto
Explore posts from serversCDCloudflare Developers
•Created by Kaique Anarkrypto on 3/29/2025 in #workers-help
How to implement free of charge ping pong in cloudflare Durable Object Websocket
I want to implement ping pong in my DO websocket so it's possible to know when the client is offline, since the websocket alone does not tells that.
But I want to avoid extra charge for each ping/pong.
Cloudflare says pings are not charged. Consider the following:
https://developers.cloudflare.com/durable-objects/platform/pricing/
Here is the protocol reference link:
https://www.rfc-editor.org/rfc/rfc6455#section-5.5.2
How can I implement that opcodes in both DO and client to ensure Cloudflare will understand the messages as the ping protocol?
My client is native browser websocket
new Webocket()
2 replies
CDCloudflare Developers
•Created by Kaique Anarkrypto on 3/26/2025 in #general-help
Does Cloudflare Workers auto scale?
I have a 5 USD plan. If, for example, I suddenly receive a hight traffic of 5K RPS, since one single worker cannot process it (because of memory limitations), will cloudflare auto scale it by increase running worker instances?
5 replies
Handle websockets from Durable Objects
I have my own Durable Object class that implements websockets. It works well with raw cloudflare workers
But when I try to implement hono, it does not works.
How to make Hono handle my Cloudflare Durable Object with Websocket. I do not want to use the Hono websockets helpe, I have my own class to handle it.
1 replies
CDCloudflare Developers
•Created by Kaique Anarkrypto on 9/17/2023 in #workers-help
Queue too slow ?
Hello! I'm implementing Cloudflare Queue in my projects.
My Producer and Consumer are in the same Worker.
However, I expected a shorter time to send messages.
After some tests, I get an average of 160 ms
Shouldn't it be faster, since they are on the same worker? Is my test wrong or I missed something?
2 replies