ryanrain2016
ryanrain2016
> > > > 我以为我说的挺清楚了,你设置nocwnd=1也可以解决这个问题。说白了就是窗口满了在队列里没有发出去 多谢指点,我不太了解其中的配置细节,我加了下面的代码,demo运行符合期望了 ``` c := conn.(*kcp.UDPSession) c.SetWindowSize(1, 1) ```
> 建议改成: @defnngj > > `elem = Browser.driver.find_elements(By.NAME, value)[self.index] if Browser.driver.find_elements(By.ID, value) else None` 你这是要执行两边find_elements? 那句应该改成elem = Browser.driver.find_elements(By.NAME, value),然后在最后加一句 elem = elem and elem[0] or None
> @tiangolo when do you plan to add a fully-functional async support to this library? > > We are using the the SQL Alchemy at the moment and recently rewrote...
I met the same problem with redis, even with `rpc=False`. It acts like a sync program and takes no advantages of `async`.
I think there should be a parameters to decide how many task can run parallelly
> > I think there should be a parameters to decide how many task can run parallelly > > You can use other methods to implement RPC calls. I don't...