Telephone

Results 27 comments of Telephone

> Correct me if I am reading this wrong but just to clarify, are you reporting that when sending a request that responds with a 3xx code and the following...

for now you can temporarily comment out the whole `swiftklib{}` block as well as the plugin usage in the `plugins{}` block in the build.gradle file when you are on machines...

Spider, I made a spider client, using kotlin ktor client to automatically do login steps for user. After these steps, all cookies remain in the ktor cookie jar, and if...

But this is not multithreading, all `evaluate`s are on the same thread(I use a single thread dispatcher to invoke all `evaluate`s). They just suspend and but the mutex block them....

That is what I mean. In quickjs we can call `JS_Eval` multiple times, and handle all pending jobs at once, they won't block each other, this is **asynchronise**. But in...

Maybe we can move all the global variables used by `evaluate` now into an `evaluate_context`, and bind an `evaluate_context` to each `evaluate` call so that different `evaluate` calls share nothing...

No, I don't mean not waiting for its jobs, `evaluate` still waits for its jobs, this is ok and it won't block the other `evaluate`s because `join` is suspendable in...