Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm working on a shopping basket application that requires a persistent basket and am trying to decide whether to store my basket/items as a blob in the database or break them out into multiple tables (*e.g. - tbl_basket, tbl_basket_items, tbl_basket_item_variants*). I have no need for sorting or filtering of basket items. I will simply query the basket based on soldto (btw, there could be multiple baskets per soldto). Baskets will only be valid for a relatively short period of time (6-12 months max). They could have several hundred line items (rare case), but I don't expect anything really all that big that it would degrade performance. The number of users is relatively small...400 concurrent users max. Typical usage would be somewhere around 50-100 concurrent users.

I'm leaning towards simply storing my basket as a blob simply because it's simple and relatively clean (yes I'm lazy). My question is, am I missing something? What are the drawbacks to this approach. What are the benefits? The one drawback that comes to mind is if my Basket object changes, it could be a problem for active baskets.

Thanks for any insight you might have.

share|improve this question

5 Answers

up vote 2 down vote accepted

use a basket, basket_item table pattern, and leave blobs for database opaque data like images, documents, etc.. Eventually you will want to tie basket items to inventory control, or analytics, or...., and having that data in a blob will kill performance.

share|improve this answer
Thanks for the feedback! Much appreciated. Question: Do you think a 3 table join to retrieve basket data is going to perform better than a de-serialization? – JCW Apr 26 '11 at 3:20
1  
yes, especially if you assume the proper database indexes are applied. – MeBigFatGuy Apr 26 '11 at 3:25

Don't store in a blob. Because you don't need to sort or filter today doesn't mean you won't tomorrow or next week or next month. Also, you'll be protecting yourself much better against change; using a blob means extra work converting to new formats as needs change.

Doing it the correct way now will save you tons of work in the future.

share|improve this answer

There is nothing inherently wrong with doing what you want to do here. You are basically storing a hash table (or an object, or a property list) encoded as binary data and retrievable by a single key. It will make it harder to query by other fields of course, but if you are sure you don't need that then go ahead.

The solution you are proposing is basically why some people prefer "object databases" to relational ones. They make it very easy to store objects!

share|improve this answer
Thanks Lyn, I did consider an object db, but unfortunately time constraints/business requirements/lack of experience in that arena prevent me from from going down that path at this time. That being said, in my particular case, I think it would probably would have have been a good fit (from my limited knowledge anyway). – JCW Apr 26 '11 at 3:36

Using a blob is bad idea from various points of view

  1. Blobs are slow, de/serializing your shopping cart is going to be very slow and you'll probably have to do it on every page view per customer (in order to display item count, or a full mini widget with the cart contents)
  2. Future-proofing, I know we should not over engineer our solutions and try to keep the YAGNI principle in mind always, but I guaranty you that eventually the business will want to do stuff with your saved carts, like analysis of abandoned carts, items that get added to carts most often, average cart value, average item quantity per cart, etc. etc. etc.,

You'd be shooting yourself on the foot if you use blobs and setting yourself up for a lengthy (probably painful) re-design later on.

share|improve this answer
I'm not going to do a basket de-serialization for every page (only upon viewing cart) but point well taken. My biggest performance hit is actually doing an order simulate in SAP (not my idea). The de-serialization is small compared to the order simulate hit. But based on the feedback from you all, I'm leaning towards not storing the basket as a blob. Thanks! – JCW Apr 26 '11 at 3:27

You better don't have a "smart column" in your database. They are supposed to be just data, this is what database for.

Smart column is some column which need further processing to make use of it, e.g.: A1234 => A represent male, and 1234 is the serial number. Not to mention your "blob" shopping cart, which is way "smarter" than the example before.

refer to http://www.amazon.com/Refactoring-Databases-Evolutionary-Database-Design/dp/0321293533

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.