Code Monkey home page Code Monkey logo

Comments (2)

cboltz avatar cboltz commented on July 21, 2024

There's a reason why we still use latin1 on fields that can only contain ascii chars (like mail address or domain).

MySQL has a limit on the index length (767 bytes).

Why do I mention that?

  • with latin1 encoding, each char is one byte.
  • with utf8 encoding, each char is 3 bytes
  • with utf8mb4 encoding, each char is 4 bytes

We use varchar(255) for most fields, and that means:

  • if we need an index covering more than one column, those columns must be latin1 so that the index can span up to 3 columns
  • an utf8 varchar(255) (3 * 255 = 765 bytes) exactly fits into the allowed index length
  • an utf8mb4 varchar(255) (4 * 255 = 1020) is too big for being indexed - we'd have to limit the index to 3/4 of the field length, and this is obviously a bad idea if it needs to be an UNIQUE index ;-)

So - if this was just a general request because utf8mb4 is cool, please understand that we won't do that.

If you noticed a specific field that needs to be changed to utf8 or even utf8mb4, please tell us which table/field needs to change, and we'll probably change/fix it ;-)

from postfixadmin.

quicktrick avatar quicktrick commented on July 21, 2024

Thanks for the detailed explanation, Christian.

from postfixadmin.

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.