A Javascript procedural language add-on for PostgreSQL

learn more… | top users | synonyms

0
votes
0answers
67 views

Postgres crashing on access to plv8 object [closed]

I am trying to setup plv8 on Debian squeeze. Postgres version is 9.2 Manual build v8 engine from sources produced illegal libv8.so: Postgres couldn't load it I added libv8.so from APT, Postgres ...
0
votes
1answer
165 views

Store and index YAML with PostgreSQL, with Javascript lib or reusable functions?

PostgreSQL 9.2 has native JSON support. I'd like to store human readable config files, however, in YAML. And I think I'd like to index a few (but not all) of the config file values. Therefore I'm ...
1
vote
2answers
215 views

Does PLV8 support making http calls to other servers?

If I write a function for PostgreSql using PLV8, can I call an url with a get/post request from my PLV8 function?
3
votes
1answer
347 views

Heroku hosted PostgreSQL and PLV8 [closed]

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 ...
26
votes
5answers
2k views

Javascript serialization and performance with V8 and PostgreSQL

I have been experimenting with PostgreSQL and PL/V8, which embeds the V8 JavaScript engine into PostgreSQL. Using this, I can query into JSON data inside the database, which is rather awesome. The ...
0
votes
1answer
304 views

PostgreSQL function returning an arbitrary type

Is there any way to have a function in PostgreSQL return an arbitrary type? I am trying to use PLV8 to grab and compare fields from a JSON type in PostgreSQL 9.2. The following works: CREATE or ...