Roman Gershman

Results 808 comments of Roman Gershman

@oscarsiles Can you please tell what dragonfly version you are running? We had this bug in previous versions but it has been fixed in the latest one.

can you please run without docker compose like this `docker run --network=host --ulimit memlock=-1 docker.dragonflydb.io/dragonflydb/dragonfly --vmodule=main_service=2 --logbuflevel=-1` ? it should create `/tmp/dragonfly.INFO` file. after DF will get stuck, can you...

@oscarsiles your help will be greatly appreciated. If you can not post the log, then maybe the Django code that can reliably reproduce the problem?

Can I assume that running https://github.com/oscarsiles/jotlet integrated with dragonfly triggers this bug @oscarsiles ?

@oscarsiles how do I start you django app? I've installed your `requirements-dev.txt` but not sure how to run it from the repo 🤔

For the protocol, to be able to run the app, I run posgresql like this: `docker run --name some-postgres -e POSTGRES_PASSWORD=pass --rm -v /var/run/postgresql:/var/run/postgresql postgres` and then exported variables like:...

@alexted - look at #184 - we confirmed that this library does not work with DF yet. 1. It requires cjson lua support (fixed in v0.7) 2. It uses relaxed...

See https://ably.com/blog/redis-keys-do-not-expire-atomically for motivation. if we use transactions to set expiry or to access multiple possibly expired items, we should use a consistent clock value during the transaction execution. current...

# high level design We can use [lamport clock](https://www.geeksforgeeks.org/lamports-logical-clock/) mixed with the wall clock. 1. When we start a transaction we sample the wall clock, and bind its value to...