Andreas Dewes

Results 92 comments of Andreas Dewes

In my opinion you should remove the bullet point concerning basic authentication (or at least formulate it differently) as I find it quite misleading. There is **nothing** wrong with using...

Ok I understand. I think as soon as I have some time I'll go through the code in detail and try to understand it better, I might then make a...

Actually there isn't right now, if your two databases are not extremely large the simplest way would be to simultaneously open them and copy the documents from one to the...

You need to call `backend.commit()` to persist the changes to disk: http://blitzdb.readthedocs.io/en/latest/backends/file.html#blitzdb.backends.file.Backend.commit Alternatively, you can set `autocommit=True` when creating the backend: ``` backend.autocommit = True ```

hi @somelinguist ! The documentation is outdated right now, for the SQL backend you don't need to create indexes manually but you can specify them directly in your data models...

Hey @celestian02 , that should be easy to do! Do you want to make the change and open a PR? You'd need to modify two files: https://github.com/adewes/blitzdb/blob/master/blitzdb/backends/file/serializers.py Here you'd need...

Thanks for reporting this! Can you send me a full code example of your `Record` class? When I do the following: ``` import blitzdb doc = blitzdb.Document() doc.attributes ``` it...

Thanks for reporting this @fiatjaf , I'll have a look at it this week!

Hey @fiatjaf , I can reproduce the issue and I'm working on a fix. Currently arbitrary id names are not yet fully supported, I'm working on it though.