Skip to content

Instantly share code, notes, and snippets.

View thyarles's full-sized avatar
:octocat:
Together we can do way more.

Charles Santos thyarles

:octocat:
Together we can do way more.
View GitHub Profile
package main
import (
"fmt"
"net/http"
"os"
"statsd"
"time"
"github.com/thedevsaddam/gojsonq"
@reinholdsson
reinholdsson / server.R
Last active January 6, 2023 12:07
Shiny + Redis example
library(rredis)
shinyServer(function(input, output) {
output$show <- renderText({
redisConnect()
res <- redisGet(input$key)
redisClose()
return(res)
})