[Django]-Django.contrib.gis.db.backends.postgis vs django.db.backends.postgresql_psycopg2

22👍

The performance difference will be almost completely invisible. django.contrib.gis.db.backends.postgis just extends django.db.backends.postgresql_psycopg2 to add the PostGiS types. It is definitely not worth going through the complexity of multiple databases just to use the two different backends.

Leave a comment