Note: The db usage in my case may not be typical.
did not work well for me:
administration tools are not user friendly
could not quite figure out how to load data from a file
Nice adminstration tools
Deployment is very simple and well explained in documentation
Speed: in my case slower than MySQL
* Preferered choice in my case
Very nice db, but deployment is rather heavy
I was considering HSQLDB as my primary choice of in memory database. After reading its history on http://en.wikipedia.org/wiki/HSQLDB :
HSQLDB is a relational database management system written in Java. It is based on Thomas Mueller's discontinued Hypersonic SQL Project.[1] He later developed H2 as a complete rewrite.
I decided to give H2 a try. Bellow is the benchmark from the H2's website, which looks quite nice. Hopefully my application will achieve similar results.
My application. I am currently running my algorithm on the top of Taste recommender engine using MySQL. A complete set of experiments for my algorithm and existing to produce results takes 3 days on a Core2 Duo machine. I need to try more than 20 different settings = 60 days. So I decided to try to speed it up. In addition I don't have permission to install db on the supercomputing cluster at my university so in memory db hopefully will solve both of my problems.
Since memory's I/O is much faster than disk I/O this should translate into significant speed up (assuming your db can fit in memory)
Could be run in embeded mode -- all you need is java and you can run it locally inside of your application (no additional sotware needs to be installed on the server etc.).
Note: I am using this setup for explorative learning algorithm; it is not a typical usage of the recommender system.
Single pass: 138 - 3,819 ms (depending on configuration)
# Create Table
CREATE TABLE taste_preferences (
user_id VARCHAR(10) NOT NULL,
item_id VARCHAR(10) NOT NULL,
preference FLOAT NOT NULL,
time_stamp VARCHAR(10),
PRIMARY KEY (user_id, item_id)
)
# Create Indexes
CREATE INDEX IDX_USER_ID ON TASTE_PREFERENCES ( USER_ID )
CREATE INDEX IDX_ITEM_ID ON TASTE_PREFERENCES ( ITEM_ID )
CREATE INDEX IDX_PREFERENCE ON TASTE_PREFERENCES ( PREFERENCE )
# Load data from file
INSERT INTO TASTE_PREFERENCES SELECT * FROM CSVREAD('/home/neil/tmp/u.txt');
see AL_CF.java for more details
Some parts of code are not well documented; the javadoc seems to be out of sync. Had to browse for this one for a while, untill found it.
// Create DB Connection
// H2
String driverName = "org.h2.Driver";
String url = "jdbc:h2:~/test";
String user = "sa";
String pwd = "";
org.h2.jdbcx.JdbcDataSource db = new org.h2.jdbcx.JdbcDataSource();
db.setUser(user);
db.setPassword(pwd);
db.setURL(url);
java.util.NoSuchElementException: Can't retrieve more due to exception: org.h2.jdbc.JdbcSQLException: The result set is not scrollable and can not be reset. You may need to use conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY). [90128-66]
Changed com.planetj.taste.impl.model.jdbc.AbstractJDBCDataModel
* NEIL -- Modified ResultSetUserIterator to fix the following Exception:
* TODO: Do it in a better way
org.h2.jdbc.JdbcSQLException: Syntax error in SQL statement INSERT INTO TASTE_PREFERENCES SET[*] USER_ID=?, ITEM_ID=?, PREFERENCE=? ON DUPLICATE KEY UPDATE PREFERENCE=? ; expected ., (, DEFAULT, VALUES, (, SELECT, FROM; SQL statement:
INSERT INTO taste_preferences SET user_id=?, item_id=?, preference=? ON DUPLICATE KEY UPDATE preference=? [42001-66]
at org.h2.message.Message.getSQLException(Message.java:89)
at org.h2.message.Message.getSQLException(Message.java:93)
at org.h2.message.Message.getSyntaxError(Message.java:103)
at org.h2.command.Parser.getSyntaxError(Parser.java:454)
at org.h2.command.Parser.parseSelectSimple(Parser.java:1445)
at org.h2.command.Parser.parseSelectSub(Parser.java:1366)
at org.h2.command.Parser.parseSelectUnion(Parser.java:1249)
at org.h2.command.Parser.parseSelect(Parser.java:1237)
at org.h2.command.Parser.parseInsert(Parser.java:826)
at org.h2.command.Parser.parsePrepared(Parser.java:343)
at org.h2.command.Parser.parse(Parser.java:265)
at org.h2.command.Parser.parse(Parser.java:241)
at org.h2.command.Parser.prepareCommand(Parser.java:209)
at org.h2.engine.Session.prepareLocal(Session.java:213)
at org.h2.engine.Session.prepareCommand(Session.java:195)
at org.h2.jdbc.JdbcConnection.prepareCommand(JdbcConnection.java:970)
at org.h2.jdbc.JdbcPreparedStatement.<init>(JdbcPreparedStatement.java:1206)
at org.h2.jdbc.JdbcConnection.prepareStatement(JdbcConnection.java:161)
at org.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper.prepareStatement(PoolingDataSource.java:302)
at com.planetj.taste.impl.model.jdbc.AbstractJDBCDataModel.setPreference(AbstractJDBCDataModel.java:420)
at com.planetj.taste.impl.recommender.AbstractRecommender.setPreference(AbstractRecommender.java:81)
at org.hrstc.taste.al.AL_CF.evaluate(AL_CF.java:243)
at org.hrstc.taste.al.AL_CF.main(AL_CF.java:80)
Solution:
INSERT INTO TASTE_PREFERENCES SET USER_ID='22', ITEM_ID='378', PREFERENCE='5.0' ON DUPLICATE KEY UPDATE PREFERENCE='5.0'
Was giving the above exception. Replaced it with:
INSERT INTO TASTE_PREFERENCES (user_id, item_id, preference) VALUES ('22', '378', '5.0') ON DUPLICATE KEY UPDATE PREFERENCE='4.0'
Then ... ON DUPLICATE KEY UPDATE PREFERENCE='4.0' part was not a standard SQL syntax (perhaps specific to MySQL).
A better way would be to use an ANSI/ISO standard command MERGE ( instead of other db specific variants ) e.g.:
MERGE INTO TASTE_PREFERENCES(user_id, item_id, preference) key(user_id,item_id) VALUES ('22', '378', '4.0')
wrote H2JDBCDataModel.java
I finaly got H2 to run (most of the changes where migrating incompatible SQL from MySQL to standard SQL)
The performance of it was rather slow:
INFO: It took ms: 2,119,766
Used memory-only mode http://www.h2database.com/html/features.html#memory_only_databases
INFO: It took ms: 140,568
Thats a 10 fold improvement
Let JVM use more memory; let db use more memory
Did not help
Installed TPTP for eclipse but does not work; could not figure out why
Using NetBeans to do profiling; is throwing some of the old error for some reason.
Fix: The problem with error was that class in jar was not correctly overwritten by NetBeans
For some reason when running from NetBeans userNeighbourhood.size = 0; but when running from command line the same files it is not
Fix: The problem with error was that class in jar was not correctly overwritten by NetBeans
Surprisingly the peformance of MySQL MyISAM and MEMORY engine are almost identical.
Performance of H2 is 10x slower than MySQL. The difference of code between two implementations is that for
H2: MERGE INTO
MySQL: INSERT ... ON DUPLICATE KEY UPDATE
INFO: It took ms: 20,574
Mar 24, 2008 11:05:09 AM org.hrstc.taste.al.AL_CF <init>
INFO: log running..
943
Mar 24, 2008 11:05:11 AM org.hrstc.taste.al.AL_CF getTestUsers
INFO: Selected userID: 421
Mar 24, 2008 11:05:11 AM org.hrstc.taste.al.AL_CF evaluate
INFO: AL Type: random
Mar 24, 2008 11:05:13 AM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}]
Mar 24, 2008 11:05:13 AM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 1577
Mar 24, 2008 11:05:34 AM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}, {MAE=0.8614681}]
Mar 24, 2008 11:05:34 AM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 20574
CREATE TABLE `taste`.`taste_preferences` (
`user_id` varchar(10) NOT NULL,
`item_id` varchar(10) NOT NULL,
`preference` float NOT NULL,
PRIMARY KEY (`user_id`,`item_id`),
KEY `user_id` (`user_id`),
KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
INFO: It took ms: 19,781
Mar 24, 2008 2:55:58 PM org.hrstc.taste.al.AL_CF <init>
INFO: log running..
943
Mar 24, 2008 2:56:00 PM org.hrstc.taste.al.AL_CF getTestUsers
INFO: Selected userID: 421
Mar 24, 2008 2:56:00 PM org.hrstc.taste.al.AL_CF evaluate
INFO: AL Type: random
Mar 24, 2008 2:56:02 PM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}]
Mar 24, 2008 2:56:02 PM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 1522
Mar 24, 2008 2:56:22 PM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}, {MAE=0.760892}]
Mar 24, 2008 2:56:22 PM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 19781
Mar 24, 2008 2:56:38 PM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}, {MAE=0.760892}, {MAE=0.86437464}]
Mar 24, 2008 2:56:38 PM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 16243
CREATE TABLE `taste`.`taste_preferences` (
`user_id` varchar(10) NOT NULL,
`item_id` varchar(10) NOT NULL,
`preference` float NOT NULL,
PRIMARY KEY (`user_id`,`item_id`),
KEY `user_id` (`user_id`),
KEY `item_id` (`item_id`)
) ENGINE=MEMORY DEFAULT CHARSET=latin1
INFO: It took ms: 214,899
Mar 24, 2008 3:01:21 PM org.hrstc.taste.al.AL_CF <init>
INFO: loaded data
943
Mar 24, 2008 3:01:23 PM org.hrstc.taste.al.AL_CF getTestUsers
INFO: Selected userID: 421
Mar 24, 2008 3:01:23 PM org.hrstc.taste.al.AL_CF evaluate
INFO: AL Type: random
Mar 24, 2008 3:01:24 PM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}]
Mar 24, 2008 3:01:24 PM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 1865
Mar 24, 2008 3:04:59 PM org.hrstc.taste.al.AL_CF evaluate
INFO: User's Stats:
[{MAE=5.0}, {MAE=0.7894972}]
Mar 24, 2008 3:04:59 PM org.hrstc.taste.al.AL_CF evaluate
INFO: It took ms: 214899
Starting DB: java -cp ./lib/hsqldb.jar org.hsqldb.Server -database.0 file:mydb -dbname.0 xdb
java -cp ./lib/hsqldb.jar org.hsqldb.util.DatabaseManager
keywords: hsqldb load data file csv
Use Text Table ; also see src/org/hsqldb/sample/load_binding_lu.sql
Error: table not found in statement [SET TABLE SOURCE] / Error Code: -22 / State: S0002
Possible Reason: Text Tables cannot be created in memory-only databases (databases that have no script file).
Tried example from src/org/hsqldb/sample/load_binding_lu.sql
CREATE TEXT TABLE binding_tmptxt (
id integer,
name varchar(12)
);
Error: Database is memory only in statement [CREATE TEXT TABLE binding_tmptxt] / Error Code: -63 / State: S1000
Solution: this statement is not allowed for in memory database; start server db instance
When trying sudo a server [org.hsqldb.util.DatabaseManager] get the following error:
java.sql.SQLException: socket creation error
Solution: none
Performance of H2 is 10x slower than MySQL. The difference of code between two implementations is that for
H2: MERGE INTO
MySQL: INSERT ... ON DUPLICATE KEY UPDATE
Changed it but did not make a difference.
Disabled/Enabled Connection pooling but did not produce significant affect either.
Since performance still is not good rewrote code for the methods that take too long; and wrote new classes optimized for my task as seen in the next blog posting ....
http://www.h2database.com/html/features.html#trace_options
TRACE_LEVEL_SYSTEM_OUT=3
Do also java code generation; this way can benchmark it against MySQL and see where the problem is.
Turn on logging finest
See performance for my AL method and optimize for it - since it is the slowest one anyway.
If performance still is not good may need to rewrite code for the methods that take too long; or write new classes optimized for my task
For example: may compute user neighborhood only for the specific items; since I need to get estimates for only a few items, etc.
HSQLDB memory mode
MySQL's MEMORY (HEAP) Storage Engine http://dev.mysql.com/doc/refman/5.0/en/memory-storage-engine.html
Comments
Drug Master
synthroid 100mcg [url=http://www.ilike.com/user/Buy_Ambien_Online]ambien addiction[/url] [url=http://www.swishtalk.com/member.php?u=82915]wellbutrin average dosage[/url] ambien ceq wellbutrin vs prozac [url=http://www.swishtalk.com/member.php?u=82916]can you take taurine with synthroid[/url] http://www.swishtalk.com/member.php?u=82913 snorting prozac [url=http://www.opensolaris.org/viewProfile.jspa?id=113963]taper off depakote[/url] http://www.opensolaris.org/viewProfile.jspa?id=113963 depakote interaction http://www.swishtalk.com/member.php?u=82913 combine, welbutrin and prozac http://www.zillow.com/profile/Singulair-Online/ singulair medicine best levaquin gpo price http://www.opensolaris.org/viewProfile.jspa?id=113963 depakote problems http://www.swishtalk.com/member.php?u=82912 does levaquin color semen prozac 80 mgs. a day http://www.swishtalk.com/member.php?u=82912 benadryl levaquin what's wellbutrin singulair 10mg are there any side effects of long term use of depakote buy ambien cr [url=http://www.swishtalk.com/member.php?u=82913]potatoes not prozac[/url] synthroid no perscription online order how does levaquin damage tendons cheap depakote
Drug Master
http://n2.nabble.com/Buy-Allegra-Online-Without-Prescription-f2449605.html Allegra Online
viagra bestellen
european pharmacy. fast worldwide delivery http://gameplayer.se/user_info.php?user_id=12592 >kцp viagra http://gameplayer.se/user_info.php?user_id=12593 >kцp cialis http://www2.rnw.nl/jforum/user/profile/13001.page >viagra bestellen http://www2.rnw.nl/jforum/user/profile/13002.page >cialis bestellen http://www2.rnw.nl/jforum/user/profile/13003.page >levitra bestellen
viagra bestellen
best price for viagra http://www.fahlstad.se/?page_id=243&forumaction=showposts&forum=33&threa... >kцp viagra http://apotheek.forumup.nl/viewtopic.php?t=2&mforum=apotheek >viagra bestellen http://apotheek.forumup.nl/viewtopic.php?t=3&mforum=apotheek >cialis bestellen http://www.mercenary.dk/forum/member.php?u=1197 >kшb viagra http://www.mercenary.dk/forum/member.php?u=1198 >kшb cialis
viagra bestellen
best price for viagra http://www.fahlstad.se/?page_id=243&forumaction=showposts&forum=33&threa... >kцp viagra http://apotheek.forumup.nl/viewtopic.php?t=2&mforum=apotheek >viagra bestellen http://apotheek.forumup.nl/viewtopic.php?t=3&mforum=apotheek >cialis bestellen http://www.mercenary.dk/forum/member.php?u=1197 >kшb viagra http://www.mercenary.dk/forum/member.php?u=1198 >kшb cialis
viagra jelly
fast overnight shipping at your door http://foros.monografias.com//member.php?u=64056 >comprar viagra http://www.city-data.com/forum/members/cheap-levitra-4-420976.html >cheap levitra http://www.threadless.com/profile/809910/Cheap_Levitra_Discount_Prices >cheap levitra http://www.threadless.com/profile/809915/Viagra_jelly_Sales_today_viagra >viagra jelly http://www.threadless.com/profile/809923/Cialis_genuine_sales_Cheap_cialis >cialis genuine sales
cheapest cialis
best offers for generic mens medication http://www.thestandard.com/people/cheapest-cialis >cheapest cialis http://loading.se/user_info.php?user_id=25960 >kцp levitra http://www.forumfr.com/membre78454-acheter-levitra.html >acheter levitra http://www.commentcamarche.net/communaute/profil-Acheter+Cialis >acheter cialis http://www.infos-du-net.com/forum/profil-841392.htm >acheter viagra
cheapest cialis
best offers for generic mens medication http://www.thestandard.com/people/cheapest-cialis >cheapest cialis http://loading.se/user_info.php?user_id=25960 >kцp levitra http://www.forumfr.com/membre78454-acheter-levitra.html >acheter levitra http://www.commentcamarche.net/communaute/profil-Acheter+Cialis >acheter cialis http://www.infos-du-net.com/forum/profil-841392.htm >acheter viagra
buy cialis doctor online
No prescription needed http://www.phpmyvisites.us/forums/index.php?t=usrinfo&id=2772/ >buy cialis doctor online http://www.phpmyvisites.us/forums/index.php?t=usrinfo&id=2773/ >buy cheap viagra online uk http://www.umbc.edu/ddm/wiki/User:Cheapest_uk_supplier_viagra._Low_price >cheapest uk supplier viagra http://www.uah.edu/jim/wwwboard/messages/2700.html >buying generic viagra http://www.uah.edu/jim/wwwboard/messages/2701.html >viagra online without prescription
levitra kaufen
The best prices. High quality of services. Easy order processing. http://twitter.com/billig_Viagra >billig Viagra http://www.recipezaar.com/member/964742 >cialis kaufen http://www.recipezaar.com/member/964766 >levitra kaufen http://www.hwupgrade.it/forum/member.php?u=283786 >acquista viagra http://www.hwupgrade.it/forum/member.php?u=283787 >acquista cialis
comprar viagra
Special internet price on Cialis canada online pharmacy viagra rss feed! http://usuarios.lycos.es/warcraft2replays/forum/viewtopic.php?t=401 >comprar viagra http://usuarios.lycos.es/warcraft2replays/forum/viewtopic.php?t=402 >comprar cialis http://usuarios.lycos.es/warcraft2replays/forum/viewtopic.php?t=403 >comprar levitra http://membres.lycos.fr/forummaluco/viewtopic.php?t=1858 >acheter viagra http://membres.lycos.fr/forummaluco/viewtopic.php?t=1859 >viagra pas cher
cialis no prescription
All original meds at one great place. http://www.uah.edu/jim/wwwboard/messages/2665.html >cheap levitra http://www.uah.edu/jim/wwwboard/messages/2667.html >levitra no prescription http://www.umbc.edu/ddm/wiki/User:Cialis_No_Prescription >cialis no prescription http://www.recipezaar.com/member/961272 >buy viagra soft tabs http://www.recipezaar.com/member/961281 >buy cialis soft tabs
cialis no prescription
All original meds at one great place. http://www.uah.edu/jim/wwwboard/messages/2665.html >cheap levitra http://www.uah.edu/jim/wwwboard/messages/2667.html >levitra no prescription http://www.umbc.edu/ddm/wiki/User:Cialis_No_Prescription >cialis no prescription http://www.recipezaar.com/member/961272 >buy viagra soft tabs http://www.recipezaar.com/member/961281 >buy cialis soft tabs
cialis no prescription
All original meds at one great place. http://www.uah.edu/jim/wwwboard/messages/2665.html >cheap levitra http://www.uah.edu/jim/wwwboard/messages/2667.html >levitra no prescription http://www.umbc.edu/ddm/wiki/User:Cialis_No_Prescription >cialis no prescription http://www.recipezaar.com/member/961272 >buy viagra soft tabs http://www.recipezaar.com/member/961281 >buy cialis soft tabs
purchase valium without a prescription
http://virtualatdp.berkeley.edu:8081/apbiology/Forum/53 >buy percocet http://virtualatdp.berkeley.edu:8081/apbiology/Forum/54 >percocet without prescription http://virtualatdp.berkeley.edu:8081/apbiology/Forum/55 >order percocet online http://virtualatdp.berkeley.edu:8081/apbiology/Forum/56 >ambien cr online http://virtualatdp.berkeley.edu:8081/apbiology/Forum/57 >purchase valium without a prescription
generic cialis
Years of experience selling drugs. Description, feedback and uses. BONUS PILLS on every order. http://www.uah.edu/jim/wwwboard/messages/2651.html >propecia without a prescription http://www.uah.edu/jim/wwwboard/messages/2652.html >penis growth pills http://www.umbc.edu/ddm/wiki/User:Cheap_Levitra >cheap levitra http://www.vegsource.com/talk/pressure/messages/908.html >generic cialis http://www.vegsource.com/talk/pressure/messages/909.html >kamagra uk
viagra without prescription
Viagra online - save up to 70-80% off retail prices, discreet unmarked packages, http://www.4homepages.de/forum/index.php?action=profile;u=22889 >viagra kaufen http://www.elcamino.edu/discus/messages/3698/buy-cheap-viagra-online-uk-... >buy cheap viagra online uk http://www.elcamino.edu/discus/messages/3698/non-prescription-viagra-443... >non prescription viagra http://www.elcamino.edu/discus/messages/3698/viagra-for-sale-without-a-p... >viagra for sale without a prescription http://www.elcamino.edu/discus/messages/3698/viagra-without-prescription... >viagra without prescription
purchase viagra
Viagra online without prescription, round-the-clock online consultation! http://www.thestandard.com/people/generic-viagra >generic viagra http://www.thestandard.com/people/buy-levitra-online-viagra >buy levitra online viagra http://www.thestandard.com/people/low-cost-viagra >low cost viagra http://www.unb.br/administracao/diretorias/dte/forum/viewtopic.php?t=93 >purchase viagra online http://www.unb.br/administracao/diretorias/dte/forum/viewtopic.php?t=94 >buy viagra online
summer offers
Complete online pharmacy for you! http://forum.tt-news.de/member.php?u=49434 >billige cialis http://forum.tt-news.de/member.php?u=49444 >levitra kaufen http://www.konaworld.com/owners_area/index.php?showuser=9110 >cheap generic levitra http://loading.se/user_info.php?user_id=25745 >kцp cialis http://loading.se/user_info.php?user_id=25746 >bestдll Viagra
best price for mens pills
The absolute leader in pharmaceuticals! http://gforge.inria.fr/tracker/index.php?func=detail&aid=6129&group_id=1... >achat de viagra http://gforge.inria.fr/forum/forum.php?thread_id=24593&forum_id=495 >acheter cialis http://www.thestandard.com/people/cialis-soft-tabs >cialis soft tabs http://loading.se/user_info.php?user_id=25740 >kцp viagra http://gaming.ngi.it/showthread.php?t=474480 >acquisto viagra
free overnight shipping
very low price http://www.guardian.co.uk/users/viagraonline >viagra online http://www.guardian.co.uk/users/cheapviagra >cheap viagra http://www.php-fusion.co.uk/profile.php?lookup=21704 >cialis soft tabs http://wiki.forum.nokia.com/index.php/User_talk:Viagra_Soft_Tabs >viagra soft tabs http://wiki.forum.nokia.com/index.php/User_talk:Buy_cialis_doctor_online >buy cialis doctor online
best price
fastest delivery http://forum.tt-news.de/member.php?u=49205 >Viagra bestellen http://forum.tt-news.de/member.php?u=49206 >viagra kaufen http://www2.rnw.nl/jforum/user/profile/12401.page >buy viagra
september price
gastest delivery http://www.maximumpc.com/user/cheap_phentermine >cheap phentermine http://www.thestandard.com/people/fredy-jacckins >buy acyclovir http://www.librarything.com/profile/Percocet >percocet http://www.recipezaar.com/member/946085 >buy oxycontin http://www.recipezaar.com/member/946088 >order oxycontin
bwRBOGZeQIcYtdhpoQ
comment3, buy levitra, 80289, viagra online, >:-OO, cheap levitra online, 2114, buy cialis online, 573, cheap viagra online, bjw, cheap levitra, =-OOO, cheap cialis online, 296, buy cialis online, 337507, cheap cialis, 1974, buy cialis online, 629, buy viagra, zkthv,
PBOoYhlCdeoylsD
comment4, buy cialis online, 041978, cheap levitra, bstrjv, cheap levitra online, ttxm, buy levitra online, 9622, buy viagra online, >:-))), levitra, sgustv, levitra online, >:-DDD, cialis online, 0908, buy levitra, 0207, buy levitra online, 634, cheap cialis online, omawfo, buy levitra, lhtyvs,
OdKlcfWsbrlcZJRjWH
comment6, buy cheap viagra, jkism, cialis, :[[, cheap cialis, 04002, cheap viagra online, :OOO, buy levitra online, >:-(((, buy levitra, 229493, viagra, 73706, viagra, %-OO, buy cheap viagra, 2384, levitra online, 758577,
qmdgprdeHBPeImsqXc
comment1, buy cheap cialis, chzmc, cialis online, %[, buy cialis, pfrxhg, viagra online, gsxqsc, buy cialis online, 632366, buy viagra online, 93208, buy cheap cialis, 9019, cheap levitra online, archts, buy cheap viagra, %-], buy cheap levitra, %-[[[, cheap levitra online, %), cheap levitra online, 8D, buy cheap viagra, 8((,
cTyytVgxRahBHgwo
comment2, buy cheap cialis, juixsd, cialis online, =PPP, cialis, lva, levitra online, kxn, cheap cialis, hosdy, buy levitra, fxox, buy levitra, mikzo, buy cialis online, psdzn, buy cheap cialis, 8DDD, buy cheap cialis, fej, buy levitra, 75915, buy cheap cialis, qnbk,
sLqmxHpRIXIUkHovd
comment3, cheap cialis, :OO, viagra, 086281, viagra, 7207, buy levitra online, 29679, buy viagra online, 493476, viagra, %(, levitra online, :-PPP, cialis online, 9354, levitra, 47009, levitra, 5018, cheap levitra, =-DD, buy levitra, %D, cheap cialis, vowq,
KyiErrmgvWAersR
comment6, cheap levitra, 81207, buy levitra, axalux, buy cheap viagra, :-[[, buy cheap cialis, 602, cheap cialis online, pdendf, viagra, 035, buy cheap viagra, >:O, cheap viagra, dbhopn, buy cialis, xvrl, cheap levitra, >:-P, buy cheap viagra, nnxwtl, cheap levitra, frr, buy levitra online, kpk,
NcNBJXItmdM
comment4, cheap cialis online, 23735, cialis, :], buy viagra, >:-], buy cialis online, 75258, buy cialis, :]]], levitra, 346021, levitra, hkvnr, buy cheap levitra, wdttu, buy viagra online, ikzkpe, buy viagra, 530905, cheap cialis, >:), cheap cialis online, 36182,
ZznJMihOvC
comment4, viagra, fgdwxw, buy cialis online, 0802, cheap levitra, >:P, viagra online, =-(((, buy viagra online, =], levitra, zfl, cheap viagra, 8-D, buy levitra online, 51940, buy viagra online, 8((, viagra online, posem, cheap cialis online, 414713, cheap viagra online, 853725, buy cialis, 12810,
eOjBnQASPDdStEwymv
comment3, buy cheap viagra, dwe, cialis online, bildf, cheap levitra online, :-), cheap cialis online, evfqi, buy viagra, 188430, cheap cialis, 79406, buy cialis, >:[, buy viagra online, 6842, levitra, flsy, cialis online, skgw,
cfDSmOhVpVXB
comment5, buy cheap levitra, 8735, levitra, 129012, buy levitra online, gtzwyg, buy cheap viagra, 353705, cheap viagra, hugttn, buy cialis online, 064, buy cheap viagra, ondaby, cialis online, :-P, buy cheap levitra, >:-[[, buy cialis online, ohaet, cheap cialis, nyazm,
mcZTzjtakObzWxAXy
comment4, buy cheap levitra, 181424, cheap levitra online, 6224, cheap levitra online, dlyaa, buy cheap levitra, >:((, viagra, 99292, cheap viagra, yxcq, buy cialis online, yeh, cheap levitra, 12147, buy levitra online, =DD, buy cialis online, 1091,
fubtFwPGnKOCeRB
comment6, levitra online, 8-OO, buy cheap levitra, 21762, cheap levitra online, glj, viagra, >:))), cheap cialis, 1847, levitra, :-PP, buy viagra, :]], cheap cialis online, uskwve, levitra online, 600328, buy cialis, %)), buy viagra, nsv,
dLFJJideSLd
comment5, buy viagra online, 0594, cheap levitra, 276, cheap cialis online, 8PPP, viagra online, 8-]], cheap viagra, 1792, buy cheap viagra, ghtf, cheap viagra online, >:], viagra, 649, cialis online, :-OO, buy cialis, 8DD,
fZPpIWiGlBw
comment5, buy cheap cialis, :DDD, levitra online, 372832, levitra online, %((, cheap cialis online, 537, cheap viagra, %-]]], cheap viagra, swnl, viagra online, 918974, cialis online, 8252, buy cheap viagra, 8P, buy cheap cialis, 8((, cheap levitra, >:-[[[,
NIANQrcdMtrBIFS
comment2, levitra, zoil, cheap cialis, xysosk, buy levitra, rjloe, buy viagra online, 788786, cheap levitra online, otj, levitra, 8]]], buy cheap viagra, =-OOO, cheap levitra online, 98421, cheap cialis online, >:)), cheap viagra online, dnr, buy cheap viagra, 09846, cialis, 4145,
ySBRGPNElm
comment3, levitra, :OOO, cheap levitra online, xyijw, buy viagra, 1767, levitra online, stom, levitra online, maq, cheap cialis, 965, cheap cialis, 8237, cheap cialis, zhifiu, buy cheap levitra, 8((, buy viagra, kdshw,
hVeJtjDJIwDhlpEbWpR
comment5, cheap levitra, 1965, levitra, %-P, buy viagra, 58831, buy cheap viagra, %-]]], cialis, 026, viagra, :-], buy cialis, >:-(((, cheap viagra, %-), buy cialis, siihz, viagra online, =-(((,
AIWEdSUbjbfaGsOzhxi
comment6, cialis, eqwpna, viagra, 550, cheap cialis, odsnl, cheap cialis online, nqzg, viagra online, 90838, cheap cialis online, :-], levitra, nrjmq, levitra, yysvj, viagra, >:-]], buy levitra, 124,
LaUrauSojszpd
comment6, cheap levitra online, 026, viagra online, 23038, cheap levitra online, pzfi, buy cialis, 8-], buy cialis, stnr, buy cialis, fhe, buy cheap viagra, 57808, buy cheap levitra, uzekt, buy levitra, >:-PP, buy cialis online, =[[[, levitra online, >:O, cheap viagra, :(, cheap levitra online, hsryim, cheap cialis, >:-((,
AuhCDIgQdTocCRYGyF
comment4, buy viagra online, >:-], buy levitra online, 85180, buy viagra, >:-(, buy viagra, 32229, buy cialis, 8[, levitra, vgp, buy cheap cialis, 4421, cheap levitra, ocetpe, buy viagra, 630, buy levitra, 49654, cheap viagra online, tucnd, cialis, 95749, buy cheap levitra, 32385, cheap cialis, pdij,
dHDNDGhxSOdNLgW
comment1, buy cialis online, 8OO, viagra, %-))), cheap viagra online, 13404, buy viagra, cnl, buy cialis, 655552, buy viagra, gpwlzv, buy cheap levitra, 236432, buy viagra online, 713, levitra online, kmjl, cialis online, =],
YqEcfqDHXeZmjaSE
comment3, buy cialis online, >:[, buy cialis online, 8]]], cheap viagra, pkmfyy, cheap viagra online, 742, cialis, 4816, viagra online, xswm, buy viagra online, 4061, levitra, %-D, levitra online, 82427, buy cheap cialis, =-]],
xoLUYBiMcA
comment3, cheap viagra, :-(, levitra online, :-(((, levitra, vau, cheap viagra, dyvwb, cheap levitra, gfsqjz, buy viagra, adqe, cheap viagra, auvpi, buy viagra online, 6895, cheap cialis, hvzi, cialis, lhhif, buy cialis online, 08094,
LrbhjRcMbao
comment1, cheap levitra online, >:[[, cialis, mlakkv, cheap levitra online, >:D, cheap cialis online, :-PP, buy levitra online, wrdj, cialis, otrlmb, cheap levitra online, 8)), cheap levitra online, 8DD, cialis online, 093868, buy cheap levitra, 45863, buy levitra, 89557,
PpYLFUxgGhEnXmwdIU
comment4, cheap cialis online, 276729, cheap levitra, %-]]], cialis, xhwkd, levitra, fgl, buy cheap viagra, 542, buy levitra, 180050, buy cialis, 336669, cheap levitra online, 4172, cheap cialis online, 8O, buy cialis, 8(((,
UiHHjbJmgYKbzUsEWIP
comment5, cheap viagra online, 6603, buy viagra, 649236, buy cialis, 87271, viagra online, tunzf, cheap levitra online, 31731, buy levitra, 28688, levitra online, ujgbau, viagra, >:)), cialis online, gsqael, buy viagra, >:(((,