Note that there are some explanatory texts on larger screens.

plurals
  1. POGenerating a non-sequential ID/PK for a Django Model
    primarykey
    data
    text
    <p>I'm on the cusp of starting work on a new webapp. Part of this will give users pages that they can customise in a one to many relationship. These pages naturally need to have unique URLs.</p> <p>Left to its own devices, Django would normally assign a standard <code>AUTOINCREMENT</code> ID to a model. While this works fantastically, it doesn't look great and it also makes pages very predictable (something that isn't desired in this case).</p> <p>Rather than 1, 2, 3, 4 I would like set-length, randomly generated alphanumeric strings (eg h2esj4). 6 spots of a possible set of 36 characters should give me over two billion combinations which should be more than enough at this stage. Of course if I could expand this at a later time, that would be good too.</p> <p>But there are two issues:</p> <ol> <li><p>Random strings occasionally spell out bad words or other offensive phrases. Is there a decent way to sidestep that? To be fair I could probably settle for a numeric string but it does have a hefty hit on the likelihood of clashes.</p></li> <li><p>How do I get Django (or the database) to do the heavy lifting on insert? I'd rather not insert and <em>then</em> work out the key (as that wouldn't be much of a key). I assume there are concurrency issues to be aware of too though if two new pages were generated at the same time and the second (against all odds) magically got the same key as the first before the first was committed.</p></li> </ol> <p>I don't see this being a million miles different from how URL shorteners generate their IDs. If there's a decent Django implementation of one, I could piggyback off that.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload