Jens Alfke

Results 86 comments of Jens Alfke

Sorry, I'm not actually using the library, I was reading through the code to see how it worked.

Fixed as part of #21. (I’d prefer to leave these as `func` and fix the bug by making `compareKey` and `mdbx_compare_key` (sp?) funcs too, but it’s not a big deal.)

The flakiness of `not nil` is a primary reason I’m not using Nim much anymore, TBH. It’s an important feature for me, but (as shown here) it’s too frustrating to...

I just ran into this too. I need to get the keys (property names) of an arbitrary object returned from a script, and there's no way to do it. I'm...

Still awaiting performance testing by perf team: [CBPS-1153](https://issues.couchbase.com/browse/CBPS-1153). Review is blocked on this.

I've implemented skipping documents now.

Huh, the Jenkins build failed on Android: ``` couchbase-lite-core/LiteCore/Query/LazyIndex.cc:133:15: error: call to member function 'bind' is ambiguous _ins->bind(1, rowid); ``` Looks like that issue with `int64_t` being `long` on Linux...

That’s not my experience. I’m trying to build from source and CMake fails very quickly: ``` $ mkdir build && cd build && cmake --build . [ 0%] Generating psa_crypto_driver_wrappers.c...

Couchbase Lite / Fleece architect here. I suspect that step 1, "create a document at CBL with the following content..." is storing the number in Float format (32-bit IEEE) not...

> As far as I understand, 307.79998779296875 is representable as a 32-bit float It is, but it's identical to `float(307.8)`. The reason you get that long expansion in decimal is...