How to create LIKE operator search in Redis cache using nodejs?
问题 I have a question, is it possible to create a LIKE operator search in Redis? Similar to relational (mysql/oracle) database. I have complex json: {"_id" : ObjectId("581c8b8854fdcd1ff8c944e0"), "Objectcode" : "xxxxx", "Objecttype" : "xxxx", "docid" : "581c8b8554fdcd1ff8c93d10", "description" : "Tags based search .... ", "metaTags" : [ "tag1", "tag2", "tag3", "tag5", "tag6", "tag7", "tag8", "tag9", "tag10" ], "__v" : 0 } and i want to search on array of metaTags how can i do it? Thanks 回答1: You