Question : Here is my code: mongoose.connect(consts.database, { useNewUrlParser: true, useUnifiedTopology: true, sslCA: consts.databaseCert, }); //… const user = await […]
Tag: javascript
Best way for processing over 150 million rows MySql
Question : I wrote a function on nodejs to SELECT 150 million records, process the data and UPDATE those same […]
Can you run PL/Python or PL/v8 code from the database itself?
Question : It it possible to run code that is stored in the database, on the database. For example, I’d […]