I have an index on an array \"keys\" that I am using to provide full text functionality to my applicaiton.
With the release of 2.4.3, I\'d like to utilize the \"text
As @alecxe pointed out earlier, to do AND search on text index column you need to double quote each search word. Below is a quick one-liner for your requirement.
db.supplies.runCommand("text", {search: "printer ink".split(" ").map(str => "\""+str+"\"").join(' ')})