goodboy

Results 707 comments of goodboy

complex event processing: https://databricks.com/glossary/complex-event-processing

Discussion surrounding this is now happening in python-trio/trio#1614 in terms of avoiding using a server all together which would actually be the most ideal. Heh, and full conclusion is "write...

Motivating blog post: https://pythonspeed.com/articles/python-multiprocessing/

[Here is an extremely good write up](https://wesmckinney.com/blog/apache-arrow-pandas-internals/) on the shortcomings of `pandas` from the original author with links to many other great resources. Apache arrow seems to very much be...

Also #8 mentions [`msgpack-numpy`](https://github.com/lebedov/msgpack-numpy). While not a new interchange it is a system worth comparing against when considering alternatives.

Interesting historical format [SBE - simple binary encoding](https://mechanical-sympathy.blogspot.com/2014/05/simple-binary-encoding.html) that's (was?) used in financial systems. > The end result of applying these design principles is a codec that has ~16-25 times...

The more I think about this the more I think we should be adopting the multi-task style considerations being discussed in the following `trio` related issues: - https://github.com/python-trio/trio/issues/719 - https://github.com/python-trio/trio/issues/1110...

Ok so thought some more about this designing some fairly involved persistent service system stuff and I think we probably want a bit more stringency in this api. second actor:...

Yah so the main question is how many nested `async with`s you gotta do: ```python ctx = await portal.open_context(stream) async with ctx, ctx.open_stream() as send, recv: # start streaming ```...

Interesting [simple example](https://arq-docs.helpmanual.io/#simple-usage) from `arq`: ```python import asyncio from aiohttp import ClientSession from arq import create_pool from arq.connections import RedisSettings async def download_content(ctx, url): session: ClientSession = ctx['session'] async with...