Can we create multiple sessions in R language . I am not using Rstudio or shiny app . I am just integrating R and python using pip module pypeR. I cannot see any R code where i can learn to create session. My requirement is to create a new session for every R request from python. Because whenever there are two requests to R at the same time my server gets blocked.
Also i have used "pypeR" module to integrate R with python.
import pyper
r=pyper.R(RCMD="/usr/bin/R")
path2script = path of my script file
output = r.run("source('"+path2script+"')")
I am a newbie in R as i have worked more in python.I have searched a lot about this issue and it seems to me that R works only in single session when called as a script through python.
Any help would be appreciated.