Explore >> Select a destination


You are here

jinyuz.dev
| | vxlabs.com
2.5 parsecs away

Travel
| | In order to add a GiST index on a Postgres database that could be used to accelerate trigram matches using the pg_trgm module and the special gist_trgm_ops operator, I had to code up a special Django Index Django will hopefully soon support custom index operators, but if you need the functionality right now, this example will do the trick. The special GiST index class looks like this: from django.contrib.postgres.indexes import GistIndex class GistIndexTrgrmOps(GistIndex): def create_sql(self, model, sch...
| | www.rasulkireev.com
2.3 parsecs away

Travel
| | Whenever you building a site with Django that will have user authentication, it is recommended to create a Custom User Model, before the first migration. Sometimes you forget to do that. In this case you have to follow a strict procedure, which I'll show you in the post.
| | www.kencochrane.com
2.5 parsecs away

Travel
| |
| | www.mattlayman.com
16.0 parsecs away

Travel
| On this episode, we look at templates, the primary tool that Django provides to build user interfaces in your Django app.