Felix Gündling

Results 110 comments of Felix Gündling

This could be caused by running AVX instructions on a (potentially virtualized) CPU that doesn't support AVX. Maybe we could eliminate this problem source by using this binary for now:...

I already added the `CONNECT` method in our own `net` library last week: https://github.com/motis-project/net/commit/e9996f1df2375240e7402dc471e2a1746312ef58#diff-b2edab7f5f2010b88a6a4673621ba98022741615c275f8742c52623fcf1304c2R18 However, I can't promise, I'll find the time to implement the `CONNECT` method in MOTIS soon.

Thank you for your feedback! :+1: You're right, JWT is only one option. But I think in general that we need to make certain API paths internal by default because...

In C++ it's better to use something like `std::array` instead of C-arrays. Cista offers `cista::array` for this purpose if you want deterministic serialization behavior. It's a known issue that cista...

Basically, what cista does is to first `memcpy` the data structure 1:1 into the serialization buffer (file / memory / mmap). This is done for every "entry point" - the...

I got the same issue, albeit with the musl target: ``` zig c++ -target x86_64-linux-musl -static -lc++abi test.cc -o test ld.lld: error: undefined symbol: __cxa_thread_atexit_impl >>> referenced by cxa_thread_atexit.cpp >>>...

Currently not, sorry. The reason is: I haven't tested it yet. I know of some issues with GCC 7 and GCC 8. So to be able to use all features...

Generally type `T` serialized with cista always take up `sizeof(T)` bytes. That `sizeof(cista::variant)` is, for a `cista::variant` the `max(sizeof(T1), sizeof(T2), ..., sizeof(TN))` plus one byte information which one of the...

Can you propose a way how `cista::space_optimized_variant` should work? If it's stored as a value, what should `sizeof(cista::space_optimized_variant)` be (this is a compile time constant which cannot depend on the...

Cista uses the same format for serialization as it uses for in-memory use at the program runtime. All Cista data structures can be used as a replacement for the corresponding...