stackless
How to track memory for a python script
We have a system that only has one interpreter. Many user scripts come through this interpreter. We want put a cap on each script\'s memory usage. There is only process, and that process invokes taskl[详细]
2023-04-03 17:08 分类:问答Tasklets Local Storage in Stackless Python
I\'m starting with Stackless Python so it\'s a whole new amazing world for me. I usually use regular threads, and they normally have Thread-local s开发者_StackOverflow中文版torage (TLS), which[详细]
2023-03-10 00:54 分类:问答Is there something similar to Stackless Python available in C#?
Is there something similar to Stackless Python, i.e. a framework that supports continuations, microthreads an开发者_JAVA技巧d lightweight processes in C#? I know that C# 5 is going to support partiall[详细]
2023-02-18 20:15 分类:问答Why Is My Stackless Executable So Much Smaller
I wrote a few games for a competition in Stackless Python and needed to create an executable. Accidentally though, I used CPython 2.6 instead of using Stackless Python 2.5 to build the executable. I r[详细]
2023-02-17 22:08 分类:问答What's the advantage of stack-less Python's microthread than Lua's coroutine in state machine implementation for game?
Any advantage on stack-less python implen开发者_JAVA百科tation than Lua\'s coroutine? What\'s the difference of them?stackless python and tasklets (I haven\'t done any programming with stackless pytho[详细]
2023-01-23 09:26 分类:问答In stackless python, is data sent over a channel immutable?
I have a typical producer, consumer pattern. If the producer sends an object over a channel, the producer is blocked until the consumer accepts the object. After the consumer accepts the object, the p[详细]
2023-01-22 16:13 分类:问答What's BLUE from CCP Stackless presentations?
In Stackless Python in Eve, t开发者_开发技巧here is some talk about \"BLUE\" objects in Python.[详细]
2023-01-18 10:24 分类:问答Has the use of C to implement other languages constrained their designs in any way?
It seems that most new programming languages that have appeared in the last 20 years have been written in C. This makes complete sense as C can be seen as a sort of portable assembly language. But wha[详细]
2023-01-11 22:06 分类:问答Mailboxes with Stackless
In my stackless application I\'d like to have Erlang style message box queues. Instead of mandating that sending tasklets are blocked until the receiving tasklet is ready to receive, I\'d like to have[详细]
2023-01-02 13:12 分类:问答Any ready solution for basic asynchronous (non-blocking) HTTP clients with Stackless Python 3.1?
UPDATE: after much laboring with Py3, including writing my own asynchronous webserver (following a presentation given by Dave Beazley), i finally dumped Python (and a huge stack of my code )-: in favo[详细]
2022-12-21 23:59 分类:问答