Closed Assambra closed 1 year ago
Case insensitive searching in mongo db works now. Keep in mind to create the collection first with the following parameters. It have to be writed down in the readme.
mongosh: db.createCollection("account", { collation: { locale: 'en_US', strength: 2 } } ) db.account.createIndex( { username: 1 } )
if we request for username "paul" and in the database the entry is "Paul" or PAUL it does not match.
I requestet some feature for it https://github.com/youngmonkeys/ezydata/issues/27