Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How heroku postgres works with 0 bytes of RAM

On heroku postgres plan page https://elements.heroku.com/addons/heroku-postgresql, it is mentioned that for hobby plans there is 0 bytes of RAM. Does it mean that Postgres is working without RAM?

like image 203
dnsh Avatar asked Nov 08 '22 09:11

dnsh


1 Answers

The 0 bytes RAM refers to the amount of in-memory cache allocated to your datastore. Heroku says...

The lack of an in-memory cache limits performance, because the data can’t be accessed on low-latency storage.

like image 58
Marty C. Avatar answered Nov 15 '22 07:11

Marty C.