gdmoore

Results 11 comments of gdmoore

Actually I think this issue is invalid -- the hang appears to have been caused by my RPC callee attempting to unregister itself _during_ the call, as opposed to after...

The original issue is definitely incorrect but is the documentation right for this? From https://crossbar.io/docs/How-Registrations-Work/ `Using the registration ID, a callee can unregister the procedure at any time.` Based on...

meejah's response clarified it; I'm using asyncio so during my RPC call `asyncio.get_event_loop().call_soon(unregister)` works fine. Thanks.

Will you be able to mix and match custom SQL with a regular ORM query? For example if I wanted to do ` Team.filter(name__icontains="CON")` but then additionally enrich the query...

It's definitely a "last resort" feature. For example Pony-orm doesn't support Python enums. You can write a converter to create the model initially, but every query you write will be...

At this time I don't have any good ideas for how to define custom types. I think the best usability for developers would be if you have implemented all of...

Also is it currently possible to execute a database function when returning a value in a field's `to_db_value` ? If I take the approach of doing everything in Python and...

Trying to have something that supports both Postgres and Mysql is a good idea. My initial proof of concept here isn't ideal because the search field is a special case....

Using pypika it should be fairly simple to generate the `tsvector @@ tsquery` syntax; an example is here: https://github.com/kayak/pypika/issues/349#issuecomment-599770845 Perhaps an additional filter field called `__search`? `Book.filter(searchfield__search="dark stormy night")` would...

Get well soon. For now I've come up with the following workaround which ticks most boxes for me. This is all very proof-of-concept quality code, but I'm sharing it to...