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
Balance Transfer Fixed Interest Rate
Very Nice Site! Thanx!
http://doublepointscreditcards-offer.cn/christmas-discover-secured-credi... >discover secured credit card for christmas
http://bestdealscatds-now.cn/transfer-balance-cards-with.html >cards with the best balance transfer
http://bestdealscardf-now.cn/sitemap.html >Sitemap - american express clear blue card
http://instand-card-now.cn/sitemap.html >Sitemap - u s credit cards life balance transfers
Fee Free Transfer Offer
Very Nice Site! Thanx!
http://fastdecisioncardas-now.cn/interest-response-seconds-credit.html >credit cards no interest for a year response in seconds
http://carditeinmins-best.cn/discover-average-credit-card.html >average credit discover card
http://besrt-cerd-now.cn/sitemap.html >Sitemap - how to max out reward card
http://creditcards-dinersrewards-offer.cn/sitemap.html >Sitemap - new credit card 0% transfer fee
0 Rate Balance Transfer
Very Nice Site! Thanx!
http://besrtcreditcaerd-now.cn/citibank-rooms-to-go.html >rooms to go citibank
http://bestdealscridet-now.cn/pharmacy-credit-cards-cash.html >gas and pharmacy cash back credit cards
http://cardbenifits-offer.cn/sitemap.html >Sitemap - balance transfer credit card balance paid
http://insecondscardas-now.cn/sitemap.html >Sitemap - hampton rewards card inn
0% Balance Transfer United States
Very Nice Site! Thanx!
http://besrcrediitcard-now.cn/promotion-internet-transfer-freedom.html >internet promotion code chase freedom balance transfer
http://bestdeals-credif-now.cn/capital-rewards-points-list.html >capital one points rewards list
http://bestdealsceridt-now.cn/sitemap.html >Sitemap - is it hard to receive credit through american express
http://fastdecision-carda-now.cn/sitemap.html >Sitemap - chase bank u s a
Best Balance Transfer Program 2008
Very Nice Site! Thanx!
http://besr-cewdit-now.cn/wwdiscover-kids.html >ww.discover kids
http://cardite-imidiate-top.cn/calculations-interest-credit-cards.html >credit cards interest calculations
http://amazing-chredit-now.cn/sitemap.html >Sitemap - american express jet blue no annual fee
http://bennefits-credit-offer.cn/sitemap.html >Sitemap - 0% life of balance credit cards
Balance Transfer 0 Fees
Very Nice Site! Thanx!
http://instantapprobalcardf-now.cn/interest-credit-best-card.html >best card credit interest low rate
http://besrtcridetcard-now.cn/transfer-freedom-balance-chase.html >chase freedom balance transfer fees
http://cards-instan-info.cn/sitemap.html >Sitemap - american express one card detail
http://amazingcredite-now.cn/sitemap.html >Sitemap - transfer rate fixed for life credit card
%0 Apr Balance Transfers
Very Nice Site! Thanx!
http://carditsinmediate-best.cn/nectar-credit-cards.html >nectar credit cards
http://bestdeals-catds-now.cn/apply-major-card-for.html >apply for major card
http://creditcard-rewards-offer.cn/sitemap.html >Sitemap - 0% balance transfer no annual fee no transfer fee
http://instancards-now.cn/sitemap.html >Sitemap - credit card comparison sites that include clear american express
Low Rates For Balances Transfers
Very Nice Site! Thanx!
http://instantapprobalcard-now.cn/credit-deals-best-good.html >best car deals for good credit
http://awardcreditcards-offer.cn/premiere-credit-wwwmy-card.html >www.my premiere credit card com
http://besrtcdeit-now.cn/sitemap.html >Sitemap - the best card credit
http://amazingccreditcards-now.cn/sitemap.html >Sitemap - balance transfers 0% apr life until balance paid off
Best Interest Rate Transfer Balance
Very Nice Site! Thanx!
http://carddobblemoney-offer.cn/credit-reward-miles-card.html >credit card miles reward
http://bestdeals-cridet-now.cn/interest-discover-percent-months.html >zero percent interest 12 months discover
http://besr-credid-now.cn/sitemap.html >Sitemap - advantages of american express credit card
http://bestcredit-csrds-now.cn/sitemap.html >Sitemap - american express security deposit
Balance Transfer Best Offer
Very Nice Site! Thanx!
http://amazingcrecit-now.cn/advanta-mastercarod.html >advanta mastercarod
http://redemptionscredit-offer.cn/credit-apply-chase-card.html >apply one for chase credit card
http://incenctivescard-offer.cn/sitemap.html >Sitemap - 0% interest transfer cc
http://amazingcartds-now.cn/sitemap.html >Sitemap - all american express credit cards
Can I Transfer Another's Balance
Very Nice Site! Thanx!
http://instantapprovercardds-now.cn/reporting-students-credit-blue.html >blue for students credit reporting
http://bestcredit-ccreditcards-now.cn/airline-rewards-redeem-hassle.html >redeem no hassle airline rewards chart
http://cards-coupon-offer.cn/sitemap.html >Sitemap - us balance transfer credit card
http://cardesinstantapprobal-now.cn/sitemap.html >Sitemap - credit score needed for american express gold charge card
0% Transfer And 0% Interest
Very Nice Site! Thanx!
http://bestcreditgard-now.cn/united-master-miles-card.html >united miles master card
http://reward66-credit-offer.cn/choose-credit-travel-miles.html >how to choose best credit card for travel miles
http://best-crditcard-now.cn/sitemap.html >Sitemap - how to max out reward card
http://amazingcredictcards-now.cn/sitemap.html >Sitemap - credit card and no transfer fee
05 Life Of Balance Transfer
Very Nice Site! Thanx!
http://bestdealscredictcard-now.cn/atm-card-and-credit.html >atm card and credit
http://inseconds-cardd-now.cn/credit-fixed-card-699.html >credit card 6.99 fixed
http://card-advantages-offer.cn/sitemap.html >Sitemap - how to apply for bank american express
http://besrtceidit-now.cn/sitemap.html >Sitemap - credit card balance transfers low rate
0% Interest On Transfer Balances
Very Nice Site! Thanx!
http://cardit-faster-now.cn/offer-best-card-card.html >best card card offer
http://bestdealsxcards-now.cn/citibank-interest-rate-39.html >citibank 3.9 % interest rate
http://amazingcrredit-now.cn/sitemap.html >Sitemap - transfer credit accounts to low credit rates
http://cardfinsecond-top.cn/sitemap.html >Sitemap - credit card with no charge balance transfers
Balance Transfer 3.9 Life
Very Nice Site! Thanx!
http://instantaprovals-cards-now.cn/discover-gasoline-credit-card.html >discover gasoline credit card
http://besrt-crredit-now.cn/compare-choose-credit-best.html >compare and choose the best credit card
http://creditcardpromotion-offer.cn/sitemap.html >Sitemap - o interest balance transfers 12 months
http://instan-cardds-now.cn/sitemap.html >Sitemap - get american express instant
Lowest Cost Balance Transfer
Very Nice Site! Thanx!
http://creditcardperks-offer.cn/requirements-standard-platinum-capital.html >capital one standard platinum requirements
http://bestdealscdeit-now.cn/programs-reward-best-card.html >best card reward programs
http://bestcreditceidt-now.cn/sitemap.html >Sitemap - credit card that i can transfer balances from my credit cards
http://fastdecisioncarde-now.cn/sitemap.html >Sitemap - american express balance transfer deal
Lo Interest Balance Transfer
Very Nice Site! Thanx!
http://cruiselinecredit-offer.cn/american-accepted-easiest-express.html >easiest american express to get accepted bad credit
http://benefitcard-offer.cn/epinions-business-advanta-card.html >epinions advanta business card
http://creditcardsgemeks-offer.cn/sitemap.html >Sitemap - does american express help to build credit
http://bestcredit-crdie-now.cn/sitemap.html >Sitemap - low interest transfers
Balance Transfer Check Faq
Very Nice Site! Thanx!
http://bestdeals-credircards-now.cn/reward-travel-cards-best.html >best reward travel cards
http://besrceidt-now.cn/banking-check-cards-free.html >free check cards for banking
http://creditcardsfreeholders-offer.cn/sitemap.html >Sitemap - american express reward card
http://bestdealscredic-now.cn/sitemap.html >Sitemap - annual fee american express platinum
Balance Transfer Online Approvals
Very Nice Site! Thanx!
http://best-creditcars-now.cn/mastercard-mileage-united-plus.html >united mileage plus mastercard
http://bestcrrd-now.cn/mastercard-citibank-physical-address.html >citibank mastercard and physical address
http://cardfsinstank-info.cn/sitemap.html >Sitemap - does introductory 0% rate apply to cash advances on american express clear
http://cardd-insant-now.cn/sitemap.html >Sitemap - mastercard and no fee and low interest
0% Apr Balance Transfer Points
Very Nice Site! Thanx!
http://carditsinsatnt-best.cn/dividend-platinum-student.html >student dividend platinum
http://carddsimmediatel-now.cn/credit-what-best-card.html >what is the best credit card for food
http://bestdealscridit-now.cn/sitemap.html >Sitemap - choosing american express card
http://besrt-creditc-now.cn/sitemap.html >Sitemap - transfer high interest credit card to lower interest credit card
Upfront Rewards Balance Transfer
Very Nice Site! Thanx!
http://creditcardloyaltyprogram-offer.cn/platinum-flexible-rewards-progr... >chase platinum flexible rewards program
http://creditrrewards-offer.cn/months-credit-cards-apr.html >0 apr for 18 months credit cards
http://bestcreditcewdit-now.cn/sitemap.html >Sitemap - o transfers
http://besrtcridit-now.cn/sitemap.html >Sitemap - credit card transfer low rate
Balance Transfers And Definition
Very Nice Site! Thanx!
http://besrt-crredit-now.cn/credit-score-of-673.html >credit score of 673
http://creditcardsrewarding-offer.cn/credit-delta-miles-offer.html >delta sky miles credit card best offer
http://magazinesubscriptionscards-offer.cn/sitemap.html >Sitemap - looking for a credit card i can transfer all my other credit cards to
http://card-crisereward-offer.cn/sitemap.html >Sitemap - 5% balance transfer credit card offers
Interest Free Balance Transfers To
Very Nice Site! Thanx!
http://cards-regionsrewards-offer.cn/credit-there-cards-good.html >are there any good credit cards
http://credit-freebies-offer.cn/transferring-american-express-balance.html >transferring american express balance
http://creditcardsgiveaways-offer.cn/sitemap.html >Sitemap - credit card transfer fees
http://bestcredtid-now.cn/sitemap.html >Sitemap - the best card for people with good credit
No Balance Transfer Fee Rewards
Very Nice Site! Thanx!
http://bestdeals-creadet-now.cn/discover-credit-5.html >discover credit 5%
http://carditinstaint-info.cn/credit-score-chase-bank.html >credit score for chase bank
http://carda-insatnt-now.cn/sitemap.html >Sitemap - how to apply for centurion card
http://carditemediate-best.cn/sitemap.html >Sitemap - 0 % balance transfers no fee credit card
Best Balance Transfers In Usa
Very Nice Site! Thanx!
http://cards-instand-top.cn/capital-hassle-credit-miles.html >capital no hassle miles credit card
http://cardf-instanst-info.cn/establish-business-credit-how.html >how to establish credit for my business
http://insecond-cardds-now.cn/sitemap.html >Sitemap - american express gold card good or bad
http://cardfsinstand-best.cn/sitemap.html >Sitemap - where to search for instant credit and balance transfers
O% Balance Transfer Interest Rates
Very Nice Site! Thanx!
http://besrtcredtid-now.cn/5--cash-rebate.html >5 % cash rebate
http://cardfs-instantonline-top.cn/redeem-hassle-miles-no.html >redeem no hassle miles
http://regionsrewards-creditcards-offer.cn/sitemap.html >Sitemap - credit card with transfer balance option
http://decisionscardas-now.cn/sitemap.html >Sitemap - credit card with free balance transfer fee
No Transaction Balance Transfer
Very Nice Site! Thanx!
http://amazingredit-now.cn/shopping-instant-credit-online.html >instant credit cards for online shopping
http://besrtchredit-now.cn/citibank-points-cards-bonus.html >citibank visa cards with bonus points
http://cardfsinminutes-info.cn/sitemap.html >Sitemap - credit card balance transfer offer no universal default
http://cardits-clikandget-top.cn/sitemap.html >Sitemap - best bank credit card balance transfer usa
0% Offer Balance Transfers
Very Nice Site! Thanx!
http://amazingcerd-now.cn/whole-gas-cards.html >whole gas cards
http://bestdealscredid-now.cn/approval-instant-credit-limit.html >high limit instant approval cards for fair credit
http://amazingcreditcard-now.cn/sitemap.html >Sitemap - credit card with 0 interest and 0 transfer fees
http://bestdeals-crediit-now.cn/sitemap.html >Sitemap - 0% & 18 months balance transfer
Cashing Balance Transfer Offers
Very Nice Site! Thanx!
http://cardds-instantapprobal-now.cn/promotion-internet-chase-code.html >chase 0% internet promotion code
http://besrcardit-now.cn/mastercard-virginia-banks-with.html >virginia banks with mastercard
http://cardinstantresults-now.cn/sitemap.html >Sitemap - how good credit to get american express card
http://creditbenefit-offer.cn/sitemap.html >Sitemap - balance transfer rewards program
0 Apr Balance Transfers Poor
Very Nice Site! Thanx!
http://bestcrecdit-now.cn/0-apr-fixed.html >0% apr fixed
http://creditcard-rewardpoints-offer.cn/rewards-card-miles.html >rewards card miles
http://amazing-credity-now.cn/sitemap.html >Sitemap - american express good credit score requirement
http://cardeinstank-now.cn/sitemap.html >Sitemap - instant approval cards fair credit score 660
Fixed Apr On Balances Transferred
Very Nice Site! Thanx!
http://cardd-instantapprover-now.cn/preferred-platinum-plus-visa.html >preferred plus platinum pay visa
http://bestcedirt-now.cn/premier-first-com-my.html >my first premier . com
http://cardas-immediately-now.cn/sitemap.html >Sitemap - low fixed life of balance transfer
http://card-privilages-offer.cn/sitemap.html >Sitemap - 0% balance transfer with no transfer fees
Reward For Balance Transfers
Very Nice Site! Thanx!
http://carditsinsecondes-info.cn/rewards-credit-card-cash.html >rewards credit card cash back
http://freeholderscredit-offer.cn/credit-credit-cards-five.html >top five credit cards for good credit
http://amazingrdedit-now.cn/sitemap.html >Sitemap - %0 apr on balance transfers
http://besrt-crecit-now.cn/sitemap.html >Sitemap - u.s. balance transfer
Balance Transfer No Fee 0%interest
Very Nice Site! Thanx!
http://promotionals-cards-offer.cn/contact-premier-first-how.html >how to contact first premier
http://carditinstantaprovals-info.cn/transfer-balance-best-card.html >best card to transfer balance
http://cardfinstaint-now.cn/sitemap.html >Sitemap - lowest balance transfer fees
http://carditsinstanly-best.cn/sitemap.html >Sitemap - special program people who filed bankruptcy in getting an american express card
0% Balance Transfer Best Offers
Very Nice Site! Thanx!
http://cardsbonous-offer.cn/freedom-credit-report-credit.html >chase freedom credit card report credit limit
http://instand-cardes-now.cn/citibank-credit-card-pay.html >citibank credit card pay
http://besrtcridt-now.cn/sitemap.html >Sitemap - 0% on balance until paid
http://bestcrerit-now.cn/sitemap.html >Sitemap - balance transfer 15000
0% And No Transfer Fee
Very Nice Site! Thanx!
http://bestcredit-creadet-now.cn/american-classic-designs-kennel.html >visa card classic card designs american kennel club
http://cardact-instantreply-now.cn/purchase-first-most-cash.html >most cash back on first purchase
http://best-credidt-now.cn/sitemap.html >Sitemap - no fee on balance transfer cards
http://fastercard-now.cn/sitemap.html >Sitemap - card credit offer top
How To Order Balance Transfer
Very Nice Site! Thanx!
http://cards-freeholders-offer.cn/capital-should-credit-card.html >should i get capital one credit card
http://creditbonus-offer.cn/credit-credit-chase-cards.html >chase credit cards gulf winds visa credit cards
http://bestcredit-crd-now.cn/sitemap.html >Sitemap - low finance credit cards for life
http://besr-creadir-now.cn/sitemap.html >Sitemap - how to max out reward card
Transfer Balance With 0% Apr
Very Nice Site! Thanx!
http://cards-instank-now.cn/gasoline-online-credit-cards.html >online gasoline credit cards
http://carditimmediate-top.cn/instant-credit-hotel.html >instant hotel credit
http://carditeclikandget-best.cn/sitemap.html >Sitemap - immediate offer credit card balance transfer
http://carditinstantresults-best.cn/sitemap.html >Sitemap - credit card lifetime transfer
0% Balance Transfer Fees Offers
Very Nice Site! Thanx!
http://bestcredit-crdeit-now.cn/lowest-apr-00.html >lowest apr 0.0
http://bestdeals-creadt-now.cn/reviews-blue-sky-am.html >blue sky am ex reviews
http://cardf-decisions-now.cn/sitemap.html >Sitemap - american express platinum card free
http://cardfsinstantapprover-best.cn/sitemap.html >Sitemap - luxury credit card american express black
0% Balance Transfer Funds
Very Nice Site! Thanx!
http://card-awards-offer.cn/platinum-select-mc.html >platinum select mc
http://cardsinstantapprobal-now.cn/deferred-interest-credit.html >deferred interest credit
http://besrvards-now.cn/sitemap.html >Sitemap - where can i get a 0% balance transfer
http://creditcardpromotion-offer.cn/sitemap.html >Sitemap - o interest balance transfers 12 months
Balance Transfers Until Paid Off
Very Nice Site! Thanx!
http://credit-erwards-offer.cn/division-credit-number-chase.html >chase credit card division phone number
http://loyaltyprogram-creditcards-offer.cn/interest-credit-card-good.html >credit card good interest rate
http://besr-credidit-now.cn/sitemap.html >Sitemap - i need to transfer my high interest credit card to a lower one
http://bestdealscardit-now.cn/sitemap.html >Sitemap - instant approval cards fair credit score 660
Balance Transfers O% Apr
Very Nice Site! Thanx!
http://bestdealscardite-now.cn/unsecured-orchard-credit-cards.html >unsecured orchard bank credit cards
http://instantapprovercarde-now.cn/yes-cash-card.html >yes cash card
http://bestdeals-criedt-now.cn/sitemap.html >Sitemap - how to max out reward card
http://besr-crdt-now.cn/sitemap.html >Sitemap - what bank has the best balance transfer rate ac
Balance Transfer Of 1.99%
Very Nice Site! Thanx!
http://creditbenfits-offer.cn/discover-rebate-card-cash.html >discover card cash rebate
http://cards-bonus-offer.cn/capital-secured-credit-chase.html >capital one secured credit card from chase
http://bestdeals-caredit-now.cn/sitemap.html >Sitemap - 3.99% balance transfer offers
http://carditeinstank-top.cn/sitemap.html >Sitemap - credits cards for balance transfers
Balance Transfer Apr Fixed Bank
Very Nice Site! Thanx!
http://innstantcarda-now.cn/mastercard-preferred-platinum-capital.html >capital one preferred plus platinum mastercard
http://cardf-instane-info.cn/approval-credit-quick-card.html >quick approval for gas credit card
http://besrtcreard-now.cn/sitemap.html >Sitemap - credit card balance transfer lifetime
http://besrt-cdit-now.cn/sitemap.html >Sitemap - no fee no transfer balance fee credit card
Transfer High Debt Low Interest
Very Nice Site! Thanx!
http://bestdeals-creddit-now.cn/feedback-capital-rewards-hassle.html >capital one no hassle rewards feedback
http://carda-instanst-now.cn/american-advances-express-blue.html >american express blue sky card cash advances
http://inmins-cardact-now.cn/sitemap.html >Sitemap - credit cards with 0%apr on transfers
http://besrt-csrd-now.cn/sitemap.html >Sitemap - % on balance transfers
Balance Transfer Approval Guarantee
Very Nice Site! Thanx!
http://immidetlycardes-now.cn/platinum-diamond-credit-card.html >credit card platinum diamond
http://awarding-creditcard-offer.cn/approvals-advanta-credit-card.html >advanta credit card approvals
http://bestcredit-xcards-now.cn/sitemap.html >Sitemap - 0 apr transfer 10 000 credit limit
http://besrt-creadt-now.cn/sitemap.html >Sitemap - credit card low rates on transfers
0.0% Balance Transfer No Fee
Very Nice Site! Thanx!
http://carddinminutes-now.cn/travel-chase-visa-card.html >visa chase travel card
http://amazingrdedit-now.cn/credit-offers-best-card.html >best credit card offers 0
http://cardit-emediate-best.cn/sitemap.html >Sitemap - credit card with balance transfer
http://cardes-inminutes-now.cn/sitemap.html >Sitemap - good sam 0% interest cards
Instant Approval Of Balance Transfer
Very Nice Site! Thanx!
http://cardfsimmediatel-best.cn/beneficial-discover-most-card.html >most beneficial discover card
http://best-cardf-now.cn/rebuilding-capital-credit-one.html >rebuilding credit capital one
http://best-credis-now.cn/sitemap.html >Sitemap - i want to apply american express credit card
http://redeem-card-offer.cn/sitemap.html >Sitemap - transfer balance fee free
O% Balance Apr Transfers
Very Nice Site! Thanx!
http://carditsimmediate-now.cn/gasoline-rebate-credit-cards.html >cash rebate gasoline credit cards
http://cardsinsant-now.cn/transfers-balance-month-apr.html >0% apr on balance transfers for 12 month
http://inminutescardact-now.cn/sitemap.html >Sitemap - credit card balance transfer life apr
http://credit-erwards-offer.cn/sitemap.html >Sitemap - no interest no payment no balance transfer fee
Dave Ramsey And Balance Transfers
Very Nice Site! Thanx!
http://instand-cardact-now.cn/benefits-shopping-credit-cards.html >credit cards with benefits for shopping
http://bebefitscards-offer.cn/american-express-credit-deals.html >american express deals on gold credit cards
http://bestcredit-crdt-now.cn/sitemap.html >Sitemap - 0% balance transfer until balance is paid off
http://couponscards-offer.cn/sitemap.html >Sitemap - credit card transfer specials
4.99 %fixed Apr For Life
Very Nice Site! Thanx!
http://bestdealscraedit-now.cn/transfers-different-balance-holders.html >balance transfers with different card holders
http://carditeinstand-info.cn/capitol-program-miles-one.html >capitol one miles program
http://erwards-card-offer.cn/sitemap.html >Sitemap - balance transfers for 30000
http://bestcredit-caridt-now.cn/sitemap.html >Sitemap - 0% credit cards for life us