Posts by Glarcan • 1 point
3 posts
-
-3
votes1
answer47
viewsQ: How to delete an element in python
I have a database. created a variable and assigns values from a column to it x1 = dataobitos.SEXO there are three distinct values: "F", "M", "Undefined". I need to eliminate "Indefinite," but I…
-
-1
votes1
answer78
viewsQ: Engine EJS + Javascript, sharing variables
const express = require('express'); const bodyparser = require('body-parser'); const redis = require('redis'); const fatorialFuncao = require('./fatorial'); const PORT = process.env.PORT || 8080;…
-
-1
votes1
answer71
viewsQ: am looking for help in redis.get cache on Node.js
function getCache(key) { cache.get(key, (err, value) => { if(err){ return ("err"); }else{ return ("" + value); } }); }; console.log(getCache('fatorial:7')); I’m trying to get key value saved in…