[erlang-questions] Selecting X number of items from Mnesia

Hynek Vychodil vychodil.hynek@REDACTED
Fri Feb 8 10:26:12 CET 2008


Just from qlc manual:

To return just a few answers cursors can be used. The following code returns
no more than five answers using an ETS table for storing the unique answers:


C = qlc:cursor(qlc:q([X || X <- qlc:append(QH1, QH2)],{unique,true})),
R = qlc:next_answers(C, 5),
ok = qlc:delete_cursor(C),
R.

On Feb 8, 2008 9:06 AM, Ulf Wiger <ulf@REDACTED> wrote:

> I'd have to check on how to do it with QLC, but using
> mnesia:select(Tab, MatchSpec, NObjs, Lock), you
> can quite easily pull the N first objects from an
> ordered_set table.
>
> BR,
> Ulf W
>
> 2008/2/8, Dave Bryson <daveb@REDACTED>:
> > I apologize in advance for the newbie question!
> >
> > I'm trying to treat an mnesia table as a FIFO queue. What I'd like to
> > be able to do is pull X number of items off the head of the list
> > returned by a query. There's no conditional values to isolate the
> > records - I just want the top X number of records.  Is there an
> > efficient way to do this with qlc?
> >
> > Thanks in advance!
> >
> > Dave
> > _______________________________________________
> > erlang-questions mailing list
> > erlang-questions@REDACTED
> > http://www.erlang.org/mailman/listinfo/erlang-questions
> >
> _______________________________________________
> erlang-questions mailing list
> erlang-questions@REDACTED
> http://www.erlang.org/mailman/listinfo/erlang-questions
>



-- 
--Hynek (Pichi) Vychodil
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://erlang.org/pipermail/erlang-questions/attachments/20080208/43401c9e/attachment.htm>


More information about the erlang-questions mailing list