Michael Mayer

Results 1129 comments of Michael Mayer
trafficstars

Not in the index, check again. Maybe also not in memory when comparing.

You'll find some information on this page: https://dev.mysql.com/doc/refman/5.7/en/charset-unicode-conversion.html You might also want to read this and related RFCs: https://en.wikipedia.org/wiki/Comparison_of_Unicode_encodings Note that Microsoft, as far as I know, still uses UCS-2...

Note that Sqlite ignores VARBINARY and probably also VARCHAR to some degree. It uses dynamic typing. That's why all string keys are prefixed with at least once non-numeric character. It...

See https://mathiasbynens.be/notes/mysql-utf8mb4 > The InnoDB storage engine has a maximum index length of 767 bytes, so for utf8 or utf8mb4 columns, you can index a maximum of 255 or 191...

We also need to consider the impact on testing and continuous integration when adding support for additional storage engines and APIs. That's often underestimated and causes permanent overhead. From a...

Note that only Gorm 2 aka 1.2 supports [compatible general types](https://gorm.io/docs/models.html). I already tried upgrading, but it turned out to be extremely time consuming and tedious due to many changes....

We initially started with a built-in TiDB server. When that caused issues, we simply sticked with MySQL-compatible databases. SQLite is not that much different, and ignores most data types anyway....

Guess it's because it will search for pictures with AT LEAST one face. We found this most suitable as additional faces sometimes are not detected, so it often won't be...

In fact, cloud storage is VERY expensive as you have to pay monthly fees. You can buy MANY local SSD drives for that if you do the math. Cloud storage...

We'll work on this once all core features are done. Bug fixes, link sharing and batch editing have higher priority. On vacation right now, back next week :)