Opened 4 years ago

Closed 4 years ago

Last modified 4 years ago

#31018 closed Cleanup/optimization (fixed)

Update FAQ about NoSQL databases.

Reported by: Thomas Güttler Owned by: Mariusz Felisiak
Component: Documentation Version: 2.2
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

This FAQ is outdated

Does Django support NoSQL databases?
NoSQL databases are not officially supported by Django itself. There are, however, a number of > side project and forks which allow NoSQL functionality in Django, like Django non-rel.

Sourcce: https://docs.djangoproject.com/en/2.2/faq/models/#does-django-support-nosql-databases

The django-no-rel project is outdated. The last commits are several years old.

What could be done?

V1: Remote the entry
V2: don't do anything
V3: Update the text
....

Change History (7)

comment:1 by Mariusz Felisiak, 4 years ago

Component: UncategorizedDocumentation
Easy pickings: set
Summary: This FAQ is outdated (Does Django support NoSQL databases?)Update FAQ about NoSQL databases.
Triage Stage: UnreviewedAccepted
Type: UncategorizedCleanup/optimization

Django doesn't support NoSQL databases, so I don't think that we should extend this FAQ. However I also agree that we shouldn't recommend django-nonreal in our docs. It looks that djongo is a better alternative but it's already mentioned in a wiki page and should stay there. I would suggest a small cleanup, e.g.:

diff --git a/docs/faq/models.txt b/docs/faq/models.txt
index 89bbbd1724..9c3951efa0 100644
--- a/docs/faq/models.txt
+++ b/docs/faq/models.txt
@@ -69,11 +69,10 @@ Does Django support NoSQL databases?
 
 NoSQL databases are not officially supported by Django itself. There are,
 however, a number of side project and forks which allow NoSQL functionality in
-Django, like `Django non-rel`_.
+Django.
 
-You can also take a look on `the wiki page`_ which discusses some alternatives.
+You can take a look on `the wiki page`_ which discusses some projects.
 
-.. _`Django non-rel`: http://django-nonrel.org/
 .. _`the wiki page`: https://code.djangoproject.com/wiki/NoSqlSupport

comment:2 by Claude Paroz, 4 years ago

Looks good!

comment:3 by Mariusz Felisiak, 4 years ago

Has patch: set
Owner: changed from nobody to Mariusz Felisiak
Status: newassigned

comment:4 by GitHub <noreply@…>, 4 years ago

Resolution: fixed
Status: assignedclosed

In a36f7ed6:

Fixed #31018 -- Removed django-nonrel in NoSQL databases FAQ.

comment:5 by Mariusz Felisiak <felisiak.mariusz@…>, 4 years ago

In 1decf29a:

[3.0.x] Fixed #31018 -- Removed django-nonrel in NoSQL databases FAQ.

Backport of a36f7ed6ac5b2529db7e13fd3754290484928b18 from master

comment:6 by Mariusz Felisiak <felisiak.mariusz@…>, 4 years ago

In 3cf70df:

[2.2.x] Fixed #31018 -- Removed django-nonrel in NoSQL databases FAQ.

Backport of a36f7ed6ac5b2529db7e13fd3754290484928b18 from master

comment:7 by Thomas Güttler, 4 years ago

thank you very much

Note: See TracTickets for help on using tickets.
Back to Top