Does anyone know if Heroku is supporting PLV8, yet? I watched a video from RailsConf 2012 where a member of the Heroku team talks here about how to use it with hstore, but I got the feeling this was what they do for internal projects. Google'ing "heroku postgresql plv8" doesn't really turn up much. If someone from the Heroku team sees this, it would be great to post any general timelines when this might be supported.
Asked
Active
Viewed 874 times
3
-
1I know this question got closed as "not constructive", and it sort of isn't. But, I'm confused right now about what to ask related to Heroku (and where to ask it). The Heroku website has a link to Stackoverflow and says "Open a discussion with fellow Heroku users on Stack Overflow." So, that's what I did and it got closed as "not constructive". IMHO, there needs to be better and clearer guidelines here. – David S Oct 02 '12 at 19:14
1 Answers
3
We do not currently support PLV8, but hstore is fully supported on 9.1 databases and above. To begin using it you can do:
heroku pg:psql
create extension hstore;
We do not have an immediate timeline for PLV8, but do hope to be able to support it sometime in the future.

CraigKerstiens
- 5,906
- 1
- 25
- 28
-
Thanks for the reply. I don't have any immediate "needed" for it, but am very interested in it and I think with the new JSON data type in the 9.2 that it will be a very powerful combination. I hope that you can support it by the time you look at upgrading people to 9.2 (or offering 9.2). – David S Sep 26 '12 at 14:26
-
2PLV8 support was added in June 2013: https://postgres.heroku.com/blog/past/2013/6/5/javascript_in_your_postgres/ – Lukas Eklund Jun 26 '13 at 17:26