0

I am accessing the in-memory database using Sequel in a Sinatra application. I want to access the in-memory database used in my application from the command line on my local host, as well as Heroku.

Is there a way to access the in-memory database outside the application or do I have to use a database?

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
Apoorv Saxena
  • 4,086
  • 10
  • 30
  • 46

1 Answers1

3

An in-memory database resides in your process's memory and is not accessible from outside the application.

CL.
  • 173,858
  • 17
  • 217
  • 259