E-commerce For Everyone - Amazon Storefront Solutions

Archive for Amazon

Masters of Science Fiction: The Complete Series (DVD) newly tagged “dvd”

Masters of Science Fiction: The Complete Series

Masters of Science Fiction: The Complete Series (DVD)
By Masters of Science Fiction

Buy new: $29.97
$11.99

51 used and new from $9.95
Customer Rating:

First tagged “dvd” by Michael Gmirkin
Customer tags: (4), (4), (4), (2), (2), (2), , , , , ,
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • YahooMyWeb
  • Reddit
  • Slashdot
  • Furl
  • TailRank
  • Netscape
  • blinkbits
  • NewsVine
  • blogmarks
  • Taggly

RightScale Webinar: Leveraging Amazon’s Elastic Block Store

Rightscale_site The folks at RightScale will be conducting a webinar on Thursday, August 28th at 10 AM PDT.

They'll focus on the recently announced Amazon Elastic Block Store, discussing application scenarios, mission-critical deployment, architecture, and design considerations. Michael Crandell (RightScale CEO) and Thorsten von Eicken (RightScale CTO) will present.

The webinar is free, but space is limited and pre-registration is recommended.

-- Jeff;

Elvis #1 Hit Performances and More, Vol. 2 (DVD) newly tagged “dvd”

Elvis #1 Hit Performances and More, Vol. 2
Elvis #1 Hit Performances and More, Vol. 2 (DVD)
By Elvis Presley

Buy new: $14.98
$12.97

44 used and new from $8.24
Customer Rating:

First tagged "dvd" by A Fan
Customer tags: , , ,

A Home at the End of the World (DVD) newly tagged “dvd”

A Home at the End of the World

A Home at the End of the World (DVD)
By Harris Allan

Buy new: $14.98
$10.49

79 used and new from $2.99
Customer Rating:

First tagged “dvd” by webryder
Customer tags: (15), (13), (9), (9), (9), (6), (6), (5), (3), (3), (2),
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • YahooMyWeb
  • Reddit
  • Slashdot
  • Furl
  • TailRank
  • Netscape
  • blinkbits
  • NewsVine
  • blogmarks
  • Taggly

LiteOn 20x SATA DVD/Dual Layer RW Drive (LH20A1S12) (Electronics) newly tagged “dvd”

LiteOn 20x SATA DVD/Dual Layer RW Drive (LH20A1S12)

LiteOn 20x SATA DVD/Dual Layer RW Drive (LH20A1S12) (Electronics)
By LiteOn

Buy new: $49.99
$33.84

8 used and new from $24.99
Customer Rating:

First tagged “dvd” by N. Holloman “kahrytan”
Customer tags: (2), , , , , ,
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • YahooMyWeb
  • Reddit
  • Slashdot
  • Furl
  • TailRank
  • Netscape
  • blinkbits
  • NewsVine
  • blogmarks
  • Taggly

Amazon SimpleDB Releases QueryWithAttributes

Amazon SimpleDB just released an update that includes a new feature called QueryWithAttributes. With this update, developers will be now able to retrieve all the information associated with items returned as a response to a particular query. The feature provides additional flexibility because it enables you to retrieve anywhere between one and all attributes for each item. This highly requested feature simplifies application development process for all clients of Amazon SimpleDB.  Instead of issuing a Query request followed by a series of GetAttributes requests, application designers can now use a single API call to retrieve all information about items stored in Amazon SimpleDB.

I am very excited about this new feature because it simplifies my application code. This is useful for developers who are not used to parallel programming or who utilize programming languages that do not support parallel programming.

The updated API documentation is here. I also highly recommend reading the Query 101, Query 102, and the best practices articles from our resource center. Amazon SimpleDB is still in limited beta. However if you sign up for the service at aws.amazon.com/SimpleDB you’ll be the first to know when additional applications are accepted.

If you don’t list specific attributes in your query, then all attributes are returned—which is the default behavior of this new API method.

There’s a FAQ below; however I believe that examples always help developers understand what the changes mean in terms of writing code:

Current Query Syntax:
Domain = ZipCode
[‘State’ = ‘WI’]

Calling the Query method returns

 <QueryResult>
  <ItemName>24103</ItemName>
  <ItemName>23724</ItemName>
  Etc…
</QueryResult>

New QueryWithAttributes Syntax
The new query is identical in every way except that the API has a new method. Called—of course—QueryWithAttributes:

Domain = ZipCode
[‘State’ = ‘WI’]

Calling the QueryWithAttributes method returns

<QueryWithAttributesResult>
  <Item>
    <Name>24103</Name>
    <Attribute><Name>state</Name><Value>WI</Value></Attribute>
    <Attribute><Name>zipcode</Name><Value>54936</Value></Attribute>
    <Attribute><Name>city</Name><Value>FOND DU LAC</Value></Attribute>
    <Attribute><Name>county</Name><Value>FOND DU LAC</Value></Attribute>
  </Item> 

<Item>
    <Name>23724</Name>
    <Attribute><Name>state</Name><Value>WI</Value></Attribute>
                  <Attribute><Name>zipcode</Name><Value>53703</Value></Attribute>
                  <Attribute><Name>city</Name><Value>MADISON</Value></Attribute>
                  <Attribute><Name>county</Name><Value>DANE</Value></Attribute>
  </Item>
Etc…
</QueryWithAttributesResult>

FAQ
Q: Can I use the same query language?
Yes, the query language is exactly the same as for the regular Query API call.

Q: Will I get back the same set of items?
Yes, the overall set of items that will match a given query expression is exactly the same as that for the regular Query API call.

Q: How many attributes can I retrieve for each item?
You can retrieve anywhere between one and all attributes for each item.  The default behavior is to return all attributes, but you can specify a list of specific attributes to return.

Q: Will my result set be paginated?
Yes, Amazon SimpleDB paginates the result set if it exceeds specified maximum number of items or a total overall response size of 1 MB.

Q: How many items can I retrieve in one page of results?
You can indicate the maximum number of items to return per page that can be between 1 and 250 (default 100).  Amazon SimpleDB will attempt to return as many items as possible per page without exceeding the maximum byte size limit (1 MB) and the maximum number of items specified.

Q: What happens to page size if my attributes are very large?
Your page size will likely be smaller than the maximum number of items specified, since the overall size of the response object will approach the limit of 1 MB.

Q: Will I ever get one item split across multiple pages of results?
No, an item will never get split across multiple pages of results.  All specified attributes for a given item will be returned within the same page of results.

Q: Does the query timeout apply to my queries?
Yes, the same query timeout applies to long running queries.

Q: How much does each call cost?
The cost of each call is proportional to the amount of system resources that it consumes.  You can monitor the cost through the BoxUsage parameter, which is returned with every response.

Q. Is the Amazon SimpleDB Beta open to all comers now?
Amazon SimpleDB is still in limited beta. However if you sign up for the service at http://aws.amazon.com/SimpleDB you’ll be the first to know when additional applications are accepted.

-- Mike

Shadows (DVD) newly tagged “dvd”

Shadows
Shadows (DVD)
By Lon Chaney; Harrison Ford

Buy new: $9.98
$9.98

67 used and new from $0.01
Customer Rating:

First tagged "dvd" by Annie Van Auken
Customer tags: , , , , , ,

Philips DVP5960 Hi-Def 1080I Up-Converting Multi-Region DVD Player with HDMI, DivX Ultra, USB Direct newly tagged “dvd”

Philips DVP5960 Hi-Def 1080I Up-Converting Multi-Region DVD Player with HDMI, DivX Ultra, USB Direct

Philips DVP5960 Hi-Def 1080I Up-Converting Multi-Region DVD Player with HDMI, DivX Ultra, USB Direct
By Philips

Buy new: $96.99
2 used and new from $38.00
Customer Rating:

First tagged “dvd” by Pete
Customer tags: (3), (3), (2), , , , , ,
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • YahooMyWeb
  • Reddit
  • Slashdot
  • Furl
  • TailRank
  • Netscape
  • blinkbits
  • NewsVine
  • blogmarks
  • Taggly

Aria the Animation Season 1 (DVD) newly tagged “dvd”

Aria the Animation Season 1

Aria the Animation Season 1 (DVD)
By Aria

Buy new: $49.99
$36.99


First tagged “dvd” by J. Smith “Warlock6669″
Customer tags: , , ,
Share and Enjoy: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Technorati
  • StumbleUpon
  • YahooMyWeb
  • Reddit
  • Slashdot
  • Furl
  • TailRank
  • Netscape
  • blinkbits
  • NewsVine
  • blogmarks
  • Taggly

The Highwaymen - On the Road Again (DVD) newly tagged “download”

The Highwaymen - On the Road Again
The Highwaymen - On the Road Again (DVD)
By Johnny Cash

Buy new: $19.99
$14.99

37 used and new from $9.00
Customer Rating:

First tagged "download" by Mary H. "Mary"
Customer tags: (6), (6), (4), (4), (4), (3), (3), , , , ,


E-commerce For Everyone - Amazon Storefront Solutions