Mark Verleg
Mark Verleg
If you want to control where the data goes, an alternative is (at the end of `docker-compose.yml`): volumes: magento-data: db-data: driver: local driver_opts: type: 'none' o: 'bind' device: '/data/magento/db' This...
There are a few practical problems: - Method `move_up_down_links` doesn't have access to `request` directly, so it can't generate a csrf tokens. - Forms cannot be nested, so the `POST`...
It might be important to support F-order arrays before this becomes default
I think when I originally created this, it was about offloading the encoding/decoding itself to another thread or process, and making an async interface. I'm not sure that's worthwhile, for...
Thanks for the suggestion, sorry it took so long. If I understand correctly, this encodes the bytes as utf8, right? Aren't there byte sequences that are not valid utf8?
Thanks for the report and the analysis! The comment parsing currently happens with regular expressions, which aren't quite powerful enough to understand all of json. But perhaps they could be...
@brupelo Would it help as a workaround to change loads(dumps(v)) to loads(dumps(v), ignore_comments=False) You won't have any comments in the json if you're dumping the data yourself, so it should...
Yeah better leave it open, it should ideally still work even when ignoring comments. In general there's no guarantee that things are encodeable and decodeable, or that those return it...
@brupelo By the way, after you add the `ignore_comments` to the loading code, you should be able to load your broken project. The error is in the loading code, so...
 I'm skeptical that this measures real write speed, because it's faster than binary. I have a [flush](https://github.com/mverleg/array_storage_benchmark/commit/d8ddce66b5024138a3fca1ae8f5a5f936ac4f4cf) in there, I don't know what else could be done.