nucypher / zerodb

*This project is no longer actively maintained. If you'd like to become the maintainer, please let us know.* ZeroDB is an end-to-end encrypted database. Data can be stored and queried on untrusted database servers without ever exposing the encryption key. Clients can execute remote queries against the encrypted data without downloading all of it or suffering an excessive performance hit.
GNU Affero General Public License v3.0
1.56k stars 102 forks source link

Autoreindex #28

Closed xueyumusic closed 8 years ago

xueyumusic commented 8 years ago

It implements this issue based on collective.indexing

michwill commented 8 years ago

Oh wow, that's super-cool! Will merge this after checking.

Just noticed that in your code you pretty much know what was modified. I guess, the next step would be to re-index only modified fields rather than whole documents (imagine, you have heavy texts of wikipedia articles and modified date field). This could affect indexes on calculated values, related objects etc, so that's why I wanted to do the simple way first.