V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  fanhaipeng0403  ›  全部回复第 14 页 / 共 29 页
回复总数  574
1 ... 10  11  12  13  14  15  16  17  18  19 ... 29  
前排与大佬合影
2019-01-06 15:42:23 +08:00
回复了 hxse 创建的主题 Python 请问 Python 中的 -> 是什么意思
type hint
2019-01-06 15:40:15 +08:00
回复了 tqknight 创建的主题 Python apply_async 多进程异步调用,子任务不执行,居然没找到原因
2019-01-06 15:40:10 +08:00
回复了 tqknight 创建的主题 Python apply_async 多进程异步调用,子任务不执行,居然没找到原因
Note that with asynchronous programming you don't need to manually deal with result queues - apply_async returns a AsyncResult instance which can be used to get the result: result.get(). This uses an underlying result (out-) queue and so you simply need to return in your target function. Also if you use result.get() and you passed a Queue instance as an argument to the target function it will raise a RuntimeError
2019-01-05 21:08:12 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
@simoncos 可能没啥用 哈哈
2019-01-05 21:07:58 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
2019-01-05 21:06:04 +08:00
回复了 simoncos 创建的主题 Python Python 功能点实现:函数级/代码块级计时器
卧槽 我刚写了个类似的文章~
2019-01-05 01:18:14 +08:00
回复了 smallgoogle 创建的主题 Python Linux 下 multiprocessing 的结束子进程问题
```
class CountdownTask:
def __init__(self):
self._running = True

def terminate(self):
self._running = False

def run(self, n):
while self._running and n > 0:
print('T-minus', n)
n -= 1
time.sleep(5)

c = CountdownTask()
t = Thread(target=c.run, args=(10,))
t.start()
c.terminate() # Signal termination
t.join() # Wait for actual termination (if needed)
```
2019-01-05 01:17:40 +08:00
回复了 smallgoogle 创建的主题 Python Linux 下 multiprocessing 的结束子进程问题
t.daeman =true
老大做完,小弟就不做了

t.join()
老大等小弟做完继续在做


class CountdownTask:
def __init__(self):
self._running = True

def terminate(self):
self._running = False

def run(self, n):
while self._running and n > 0:
print('T-minus', n)
n -= 1
time.sleep(5)

c = CountdownTask()
t = multiprocessing.Process(target=c.run, args=(10,))
t.start()
c.terminate() # Signal termination
t.join() # Wait for actual termination (if needed)
老大给小弟给信号



不知道理解的对不对、、、
ipython manage.py shell

%debug
2019-01-04 15:52:44 +08:00
回复了 zhangqilin 创建的主题 职场话题 后端工作 1 年 2 个月感慨
@liprais 不大么~
SEO:
深圳市成为智能交通系统有限公司 怎么样
深圳市成为智能交通系统有限公司 薪资待遇
深圳市成为智能交通系统有限公司 拖欠工资
深圳市成为智能交通系统有限公司 好不好
深圳市成为智能交通系统有限公司 无赖公司
深圳市成为智能交通系统有限公司 招聘信息
深圳市成为智能交通系统有限公司 信用怎么样
深圳市成为智能交通系统有限公司 企业架构
深圳市成为智能交通系统有限公司 公司氛围
深圳市成为智能交通系统有限公司 福利
深圳市成为智能交通系统有限公司 产品介绍
深圳市成为智能交通系统有限公司 企业咨询
深圳市成为智能交通系统有限公司 产品口碑
2019-01-03 12:46:16 +08:00
回复了 fanhaipeng0403 创建的主题 Python 分享个 celery 的监控脚本吧
@zhoudaiyu 看了~我最近也要处理这个事情~
db.session.close()

每次都关掉,绝对会解决
2019-01-03 11:35:10 +08:00
回复了 0x11901 创建的主题 职场话题 关于自身技术发展的疑惑?
和我想的差不多·~
2019-01-03 11:24:14 +08:00
回复了 hauzi 创建的主题 程序员 各位大佬写代码的时候一般戴耳机么?听些什么呢?
2019-01-03 11:20:17 +08:00
回复了 YuuuZeee 创建的主题 Python Celery 可以启动多个线程嘛=-=
import asyncio

async def slow_operation(n):
await asyncio.sleep(n)
print('Slow operation {} complete'.format(n))
return n


loop = asyncio.get_event_loop()
done, _ = loop.run_until_complete(
asyncio.wait([
slow_operation(1),
slow_operation(2),
slow_operation(9),
slow_operation(2),
slow_operation(1),
slow_operation(2),
slow_operation(3),
]))
for fut in done:
print("return value is {}".format(fut.result()))

然后用 uvloop
1 ... 10  11  12  13  14  15  16  17  18  19 ... 29  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   5109 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 35ms · UTC 09:45 · PVG 17:45 · LAX 01:45 · JFK 04:45
Developed with CodeLauncher
♥ Do have faith in what you're doing.