Congyu

Results 136 comments of Congyu

I think a figured a solution. That is to implement `access_token` and `openid_token` separately. So you can have your SDKs still use the old access_token format, while improving your compliance...

Great, I’ll try to compile from source and paste the current error code here later on, since I’m not very familiar with openCL.

For the moment, I'll just paste my output here. Hope that it will be an easy fix. If it doesn't seem easy, we can go to slack I think. System...

No, I tried to build with OpenCL too. I get: ``` CMake Error at src/backend/opencl/CMakeLists.txt:486 (target_link_libraries): Target "afopencl" links to: LAPACKE::LAPACKE but the target was not found ```

This library has SstFileWriter and ingestExternalFile implemented: https://github.com/Congyuwang/RocksDict. `pip install rocksdict`. With pre-build wheels, no need to compile. Build Write Demo: ```python from rocksdict import Rdict, Options, SstFileWriter import random...

Try this. This is also implemented in RocksDB. A python on-disk storage. Great ergonomics. https://github.com/Congyuwang/RocksDict Store any python object on-disk also. You don't need to compile. Just `pip install rocksdict`....

open with ttl? Try `pip install rocksdict`. https://github.com/Congyuwang/RocksDict Then you can have: ```python from rocksdict import Rdict, AccessType # 24 hr TTL db = Rdict(path="db_path", access_type=AccessType.with_ttl(24 * 3600)) db["a"] =...

So far, `offset` is still not added to `aggregateWindow`. So I have to use `window` instead of `aggregateWindow` when I need offset, but `window` is slower. Another question is why...

Related: https://github.com/rust-embedded/cortex-m/issues/224, https://github.com/rust-embedded/cortex-m/issues/359