Can I use java libraries or something?
x13machine opened this issue ยท 6 comments
I wanted to connect to a redis database. Would I be able to use java libraries or node.js modules?
In java to connect a redis database it would be new Jedis("localhost"); I did /js c=new java.Jedis('localhost') . It complained that jedis is an object.
You should be able to use Java libraries if there are java bindings for redis.
What java package does the Jedis class live in? The code should be something like:
/js var jedis = new redis.clients.jedis.Jedis('localhost')