Alex Jironkin
Alex Jironkin
Let me know if further information is required or troubleshoot
@mdumandag thanks for the info. Very insightful. We tried to patch this function out to see if that would work, however, it didn't: ```code INFO: [3.12.1] [hazelcast] [hz.client_0] Connecting to...
Let me try to get you a working example, in the mean time, we use: hazelcast: 3.12.1 hazelcast-python-client: 3.12.1 eventlet: 0.25.1 gunicorn 20.0.4 flask: 1.0.2 python: 3.6.9
@mdumandag We managed to get this working using monkey patching, as described above, thanks. I guess the final question is how does this become more permanent fixture in hazelcast python...
After digging around the codebase it appears the following happens: * [`get_binds()`](https://github.com/mitsuhiko/flask-sqlalchemy/blob/500e732dd1b975a56ab06a46bd1a20a21e682262/flask_sqlalchemy/__init__.py#L155) returns: * [`state.db.get_engine()`](https://github.com/mitsuhiko/flask-sqlalchemy/blob/500e732dd1b975a56ab06a46bd1a20a21e682262/flask_sqlalchemy/__init__.py#L161) if `bind_key` is present in the `mapper` * `sqlalchemy.orm.session.Session.get_bind()` when no `bind_key` is present or...
@MarcAragones No we have this working for a while now without issues. However, my original answer only works for single entry in binds, modified version that includes all binds: ```python...
Thanks for the change, #1087 looks to be a significant change, looking forward to reading more about it and trying it.
You can intersect and union bloom filters but only if they have the same bit array lengths right?! Union is just bitwise or. If bit is set in one array,...
Through an API method, or by accessing bit array and doing and/or manually? But they way do you use inyernal counters for deletion etc? Because they would have to change...
The issue here is the default serialiser can't handle special characters e.g. `ä` (`\u00e4`) and raises `PythonObjectSerializer`. The workaround is to use `json.dumps` serialisation that does handle it, but this...