Dan Allan
Dan Allan

It would be best to implement this in a stand-alone function, perhaps in `tiled.utils`, and then call it at the location in `tiled.catalog.adapter` linked in the comment above. We can...
This, lifted from #16, may be a useful reference. https://stackoverflow.com/questions/460047/how-do-i-determine-if-a-directory-is-a-mounted-nfs-mount-point-in-shellscript/460061#460061
Oh, nice, that's very clean. We already have a `psutil` dependency on the server side, but we do not yet have one on the client side. I try to be...
Reflecting on this sometime later, I think adding `psutil` as a client-side dependency is worthwhile. It's light, pretty widely used, and may come in handy in other ways.
Picking this back up: - [ ] Accept a `psutil` dependency for server and client. Add in `server`, `client`, `minimal-server`, and `minimal-client` sections in `pyproject.toml`. - [ ] Create a...
Good note. Quoting the end of the linked recommendations: > Choose the technology that is right for you and your customers. If your data lives on a different machine from...
That would be very welcome. Thanks!
You make a decent point about `FullText`. I worry about `Search` being _too_ generic, as illustrated by the usage: ```py c.search(Search(...)) ```
This related project shows another way to spell this which I think I like better: Leave the slice syntax as is, taking standard numpy-style slices. Add an optional query parameter...