Giter Club home page Giter Club logo

Comments (3)

etianen avatar etianen commented on June 2, 2024 1

Rewriting this project to only support PostgreSQL and JSON serialization would allow indexing on the versioned data, yes.

The loss of general usefulness to support a single use-case seems like a bad tradeoff to me.

If efficient introspection of the versioned data is required, I'd suggest going one step further and having a dedicated version table for each model. That would avoid any JSON overhead whatsoever.

from django-reversion.

etianen avatar etianen commented on June 2, 2024

I'm not sure how this could be implemented. A database field that is one type or another based on a setting is tricky, since the migrations would have to vary depending on that setting too! And if a user changed the setting after running the migrations, a new migration would have to be made, and where would Django store it?

I'm not sure Django really supports the idea of a database field that is dependent on a setting. I fear this would cause a lot of weird behavior for people.

filtering very efficiently a QuerySet of Version instances

Unfortunately, this would still likely involve a sequential table scan in postgres. It's likely that for large tables this would still be prohibitive.

from django-reversion.

scur-iolus avatar scur-iolus commented on June 2, 2024

Thank you for your feedback (and for your work here).

I had the feeling that such a change could quickly become a burden in terms of development and maintenance cost. But I wanted to hear your perspectives on this idea. You're right that this is probably not feasible without deeply rethinking the extension / without significant breaking changes, which is not an option...

Unfortunately, this would still likely involve a sequential table scan in postgres. It's likely that for large tables this would still be prohibitive.

That being said, I'm not an expert on the subject but isn't it exactly the contrary? According to Django documentation:

PostgreSQL users
PostgreSQL has two native JSON based data types: json and jsonb. The main difference between them is how they are stored and how they can be queried. PostgreSQL’s json field is stored as the original string representation of the JSON and must be decoded on the fly when queried based on keys. The jsonb field is stored based on the actual structure of the JSON which allows indexing. The trade-off is a small additional cost on writing to the jsonb field. JSONField uses jsonb.

As I understand it, that means PostgreSQL users (the vast majority of Django users) should be able to add indexes to JSONFields. Admittedly, this seems to be a recent & not commonly used feature in Django. So from a pure theoretical point of view, should you rewrite the extension from scratch for PostgreSQL users only & for users who would never use anything else than JSON to serialize data, don't you think the idea could make sense?
(Yeah, that makes quite a few conditions)

from django-reversion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.