Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: PostgreSQL cursors with Perl.

by ctilmes (Vicar)
on Apr 17, 2008 at 13:46 UTC ( [id://681157]=note: print w/replies, xml ) Need Help??


in reply to PostgreSQL cursors with Perl.

I used to keep it in plaintext files, but now I'd want to run some simple queries with it. Hence, I need a database.

What type of queries? What type of data structures/schema are you using?

FWIW, I've found BerkelyDB very nice for simple data structures, and very fast local queries. (I also find PostgreSQL very nice for more complicated data structures and queries...)

Replies are listed 'Best First'.
Re^2: PostgreSQL cursors with Perl.
by atemerev (Beadle) on Apr 17, 2008 at 14:02 UTC

    I have quotes data for around 15 currency pairs (like 'EUR/USD', 'USD/JPY' etc). For every currency pair there is a separate table (there are no inter-table joins) of a following structure:

    id => int primary key, timestamp => bigint, # epoch timestamp in milliseconds bid => decimal, ask => decimal, bid_amount => int, ask_amount => int, data => varchar # lots of additional data that # need not to be indexed nor normalized

    The queries look like:

    SELECT * FROM table WHERE timestamp > ? AND timestamp < ?

    Or:

    SELECT MAX(bid), MIN(bid), MAX(ask), MIN(ask) FROM table WHERE timestamp > ? AND timestamp < ?
Re^2: PostgreSQL cursors with Perl.
by camlet (Novice) on Apr 17, 2008 at 20:41 UTC
    i don't know if sec will work for 15 gig files but sec works very efficiently with monitoring and parsing simultaneously a large amount of log files. hth. http://www.estpak.ee/~risto/sec/
      Thanks for link. Probably I will not use it for this particular task, but this thing definitely is worth looking at.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://681157]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (6)
As of 2024-04-18 13:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found