Gregory Meyer (gregjm)

Results 9 comments of Gregory Meyer (gregjm)

Very true. Do you want: 1. Concurrent iteration, but with the possibility of repeated keys? 2. Concurrent iteration with no repeated keys, but with space/allocation overhead to track that? 3....

I've been thinking on this and there are a few potential pain points: * Do you need to be able to iterate while modifying the table? If yes, ouch. If...

Would something like Redis' serialization model be suitable? As in, fork the process and use copy-on-write memory mappings to get exclusive access to the hash table? This could also be...

OK, try it out on the branch [`iteration-seralization`](/Gregory-Meyer/cht/tree/iteration-serialization) and let me know what you think. Iteration is honestly pretty unergonomic, but offers good flexibility and exposes entirely too much information...

Iteration is certainly in the future of cht, but to be honest it's not a necessity for my use case. I will look into adding iteration after finishing RMW operations...

I wrote this because I switched from Alacritty to Kitty for Wayland clipboard support; since Alacritty is a windowed application with a surface, it seems I need to add a...

This latest commit updates the dependency on `wl-clipboard-rs` to 0.3 and adds support for clipboard management via the `wl_data_device` protocol via `smithay-clipboard`. However, using the `wl_data_device` protocol requires us to...

[Related issue with Kombu](https://github.com/celery/kombu/issues/707)

The solution is likely wrapped up in Kombu and Worker logic. I haven't looked into it any further than the issue itself.