No, I ask the question for this channel, and give a suggestion in the suggestion feature channel
No, I ask the question for this channel, and give a suggestion in the suggestion feature channel
Does cloudflare support the cache to prevent call worker everytime?You asked this in #workers-feature-suggestions. Please try and keep conversations to one channel to avoid confusion for people trying to help.

npm i @hono-rate-limiter/cloudflare. There is 1 other project in the npm registry using @hono-rate-limiter/cloudflare.
og-img lib

socket.startTls() to upgrade a socket to be secure? I've followed these docs which for me works with wrangler dev but not wrangler dev --remote. from a worker, I want to connect to an HTTP proxy with the HTTP CONNECT method, then perform TLS handshake, and then GET a resource from a target HTTPS site via the proxy connectionimport { connect } from 'cloudflare:sockets';
// if keep socket connection here will charge CPU time?
const socket = connect(gopherAddr);
export default {
async fetch(req): Promise<Response> {
}
}socket.startTls()