#skLib - why variables are not supported in : redis variable %string%

1 messages · Page 1 of 1 (latest)

covert violet
#

yep it is unfortunate... mongosk can most likely do whatever it is that you are trying to do if you feel like learning it. if you want to take a look at it then its not that hard to learn and can be free you just need to create a database and then link your database to your skripts so it can store stuff

#

also has its own discord server with people to help and the owner is semi-active

#

i dont know what you are trying to make but here is an example:

    set {Mongo.Server} to a new mongosk client with connection string "mongodb+srv://<PASSWORD>"
    set {Mongo.Database} to mongo database named "Example" from {Mongo.Server}
    create a mongo collection named "Test" in {Mongo.Database}
    set {Mongo.Collection} to mongo collection named "Test" of {Mongo.Database}


set {_doc} to first mongo document with mongo filter where field "_id" is "%{_id}%" of collection {Mongo.Collection}
set mongo field "E" of {_doc} to "A"```