Kai Janson

Results 9 issues of Kai Janson

If the incoming endpoint (read "fake" email address) function doesn't terminate with the atom ok. then the server will resend the response until the server is being shut off. As...

mail

Hi, The reloader doesn't pick up changes in modules properly. Scenario: Start Boss. Have a module named __src/lib/__stuff.erl . Execute stuff:bar(). Works. Now you edit function named "bar" in the...

loading

Hi Evan, I think the mongodb driver in boss_db should have a way to support projections, as described here: http://docs.mongodb.org/manual/core/read-operations/ Section "Result Projections" Currently, there is no way to leave...

mongo
Feature Request

When I try to create an index from within the CB application, this is what I get: ``` erlang (myapp@MYBOX)25> mongo:create_index(thread, "tags"). ** exception error: {badrecord,context} in function mongo:this_db/0 (src/mongo.erl,...

mongo

Hi, The case clause ``` {'matches', "*"++Value} -> [{Key, {regex, list_to_binary(Value), }}]; ``` in **boss_db/src/db_adapters/boss_db_adapter_mongodb.erl** can never match; if Value is "form" then "_form" is not a match, and if...

mongo

It would be good to have the ability to select fields for the result set. ``` erlang boss_db:find(vegetable, [{select, [name, color, amount]}]) ```

Feature Request

The current implementation of boss_db allows only a single sort criteria. That's a major limitation to use boss_db. It would be great to have the ability to sort like this:...

Feature Request

Hi, I am using MongoDB with a shard of MySQL (that almost sounds like the beginning of a bad joke) but it's failing to save a record. Trying to create...

MySQL
Mongo

Maybe I missed it, but is there a way to have - has_one - belongs_to - many_to_many ...and whatever else is out there...? Thank you!