I am currently developing an application in node.js. I have a Postgres/PostGIS database to store geospatial information and render them as SVG. That works fine so far. On the other side I have a CouchDB database filled with data, from a previous project.
I'd like to combine this data with the geospatial data from postgis via node.js, but I am not sure on how to proceed with the structure of my databases.
Is it a good idea to work with two different database types - even paradigms - in one application? Or is is better to transform the data from one db to the other?
BTW: This is purely a hobby project.