Enable Erlang for views?

2009-10-19 Thread Zachary Zolton
Guys, I noticed that the test suite creates a design document with an Erlang view, however I can't execute it from curl. $ curl http://localhost:5984/test_suite_db/_design/erlview/_view/simple_view {error:unknown_query_language,reason:erlang} Are we supposed to be able to map/reduce our docs in

Re: Enable Erlang for views?

2009-10-19 Thread Paul Davis
On Mon, Oct 19, 2009 at 12:40 PM, Zachary Zolton zachary.zol...@gmail.com wrote: Guys, I noticed that the test suite creates a design document with an Erlang view, however I can't execute it from curl. $ curl http://localhost:5984/test_suite_db/_design/erlview/_view/simple_view

Re: Enable Erlang for views?

2009-10-19 Thread Zachary Zolton
Understood—my couch doesn't accept design docs from outside sources, so this should be safe enough for my uses... Thanks! On Mon, Oct 19, 2009 at 12:37 PM, Paul Davis paul.joseph.da...@gmail.com wrote: On Mon, Oct 19, 2009 at 12:40 PM, Zachary Zolton zachary.zol...@gmail.com wrote: Guys, I

Re: Enable Erlang for views?

2009-10-19 Thread Zachary Zolton
Hm... Not so fast, I put the following in my local.ini: [native_query_servers] erlang = {couch_native_process, start_link, []} But now when I try it, I'm still getting the error: $ curl localhost:5984/test_suite_db/_design/erlview/_view/simple_view {error:unknown_query_language,reason:erlang}

Re: Enable Erlang for views?

2009-10-19 Thread Paul Davis
Zachary, Did you restart CouchDB after making that change? Also, can you double check that there's an erlang_views.js in your Futon's Test suite? I'm pretty sure that's in 0.10.0. Paul Davis On Mon, Oct 19, 2009 at 4:12 PM, Zachary Zolton zachary.zol...@gmail.com wrote: Hm... Not so fast, I

Re: Enable Erlang for views?

2009-10-19 Thread Robert Dionne
aren't those views in the test suite temporary? On Oct 19, 2009, at 4:19 PM, Paul Davis wrote: Zachary, Did you restart CouchDB after making that change? Also, can you double check that there's an erlang_views.js in your Futon's Test suite? I'm pretty sure that's in 0.10.0. Paul Davis

Re: Enable Erlang for views?

2009-10-19 Thread Zachary Zolton
Ah, my launchd setup is apparently borked, cuz stop/start'ing the server didn't work, but rebooting my system did. Drat! Well anyways, it does seem to be working! Thanks again, Zach On Mon, Oct 19, 2009 at 3:19 PM, Paul Davis paul.joseph.da...@gmail.com wrote: Zachary, Did you restart

Re: Enable Erlang for views?

2009-10-19 Thread Paul Davis
On Mon, Oct 19, 2009 at 4:22 PM, Robert Dionne dio...@dionne-associates.com wrote: aren't those views in the test suite temporary? Not sure I follow. I meant check that the test exists to make sure that erlang views are in the running CouchDB node. Paul Davis

Re: Enable Erlang for views?

2009-10-19 Thread Jan Lehnardt
On 19 Oct 2009, at 22:12, Zachary Zolton wrote: Hm... Not so fast, I put the following in my local.ini: [native_query_servers] erlang = {couch_native_process, start_link, []} Do you have a newline after this last line? Cheers Jan -- But now when I try it, I'm still getting the error: $