[openbiblio-dev] bibserver dao

Rufus Pollock rufus.pollock at okfn.org
Mon Aug 22 08:56:48 UTC 2011


I think this was resolved by our chat on skype :-)

As you saw the DAO layer *is* ultra-simple (though I think it will get
somewhat more complex over time).

Rufus

On 20 August 2011 16:01, Mark MacGillivray <mark at cottagelabs.com> wrote:
> hi rufus,
>
> thinking about the dao:
>
> If we are only building this for ES, I dont see the point of building
> an overly complex dao layer - we can easily pass stuff back and fore
> to ES via the http, and the only thing that really misses is having to
> pass data objects from the front end.
>
> So, why dont we just add an extra param to queries - e.g. our front
> end can build up search queries in ES format, and where we cannot do
> that directly, such as passing facet info, we can add a param called
> "data" and its value can be the JSON string that has to be passed.
>
> solreyes already uses a JSON string like this as the "a" parameter, so
> I can just convert the way it reads and writes those. Then, all I want
> to do is set up a dao object, and do something like
> dao.query(param_string) - and it should unpack the "data" param if
> there is one, or receive the data object if it has been contacted
> directly, say via curl.
>
> This way, we can easily rely on ES to provide the JSON output, and
> just explain in our API that the output is ES - therefore, to find
> your actual result objects, just look in data.hits.hits and they will
> by listed under _source, and to find or set various params, do so in
> the normal ES way but with the added value of the "data" param on the
> GET, if for some reason not sending in a way that data can be passed
> (e.g. from the browser).
>
> All else our dao needs then is things like "delete" or "record"
> functions where perhaps we do useful things like delete a record via
> its ID, or get a specific record as a JSON object without the
> surrounding ES stuff. This is what I had in mind from what is already
> in the dao.
>
> The only real value of a dao that changes the way the results are
> presented or accessed, that I can see, would be if we were wanting to
> call on different back ends. If we are not going to do that though,
> then what is the value of the extra effort?
>




More information about the openbiblio-dev mailing list