DynamoDB Local for Desktop Development
Would you like to be able to write and test code that uses the Amazon DynamoDB API even if you have no network connection and without incurring any usage charges ?
If so, you are going to love Amazon's new DynamoDB Local test tool.
DynamoDB Local is a client-side database that supports the complete DynamoDB API, but doesn't manipulate any tables or data in DynamoDB itself.
You can write code while sitting in a tree, on the beach, or in the desert.
Installing and Running DynamoDB Local
DynamoDB Local is available as an executable Java archive (JAR) file.
It will run on Windows, Mac, and Linux systems and is compatible with version 7 of the Java Runtime Environment (JRE).
It will not work on older versions of Java.
Download the DynamoDB Local JAR, put it in the directory of your choice, and open a command prompt in that directory.
Launch DynamoDB Local like this:
$ java –Djava.library.path=. -jar DynamoDBLocal.jar
DynamoDB Local will create a local database in the same directory as the JAR.
The file name will have the form MyAccessKeyId_Region.db, where MyAccessKeyId is the AWS access key used to access DynamoDB Local
and Region is the target region.
Configure your application so that it uses the local endpoint.
DynamoDB Local listens on port 8000 by default; you can change this by specifying the --port option when you start it.
If you are using the default port, the local endpoint will be localhost:8000.

DynamoDB Local for Desktop Development的更多相关文章
- Domain Driven Design and Development In Practice--转载
		原文地址:http://www.infoq.com/articles/ddd-in-practice Background Domain Driven Design (DDD) is about ma ... 
- Running a Remote Desktop on a Windows Azure Linux VM (远程桌面到Windows Azure Linux )-摘自网络(试了,没成功 - -!)
		A complete click-by-click, step-by-step video of this article is available ... 
- How to enable C development in a Windows 10 development environment VM
		To enable C development in a Windows 10 development environment VM, follow these steps: Start VS in ... 
- Nodejs课堂笔记-第四课 Dynamodb为何物
		本文由Vikings(http://www.cnblogs.com/vikings-blog/) 原创,转载请标明.谢谢! 我喜欢带着目标来学习新知识.因此学习nodejs过程中,不喜欢只看枯燥的语法 ... 
- git路径超长 及gitignore
		1 忽略路径超长 git config --system core.longpaths true 2 比较全的gitignore https://www.gitignore.io/api/vim,no ... 
- (转) [it-ebooks]电子书列表
		[it-ebooks]电子书列表 [2014]: Learning Objective-C by Developing iPhone Games || Leverage Xcode and Obj ... 
- Carthage使用(cocoapods的替代)
		1.使用homebrew安装Carthage brew intsall carthage Ps:没有安装Homebrew的话,进入传送门Homebrew.顺便提一句可以选择简体中文啊. 2.进入 ... 
- Linux基础命令和NAT技术
		yum yellowdog updater,modified是一种用python写的基于rpm的管理工具 用于解决rpm包的依赖性 要安装编译工具 yum install gcc 库函数:静态库 ... 
- Download Visual Studio
		Welcome to a new way to install Visual Studio! In our newest version, we've made it easier for you t ... 
随机推荐
- Squid故障
			1.COSS will not function without large file support (off_t is 4 bytes long. Please reconsider recomp ... 
- SpringMVC——注解的使用与结果跳转方式
			1.项目结构 2.源代码 package com.zhengbin.controller; import java.io.IOException; import javax.servlet.Servl ... 
- 【转 iOS 8 Auto Layout界面自动布局系列2-使用Xcode的Interface Builder添加布局约束
			原文网址:http://blog.csdn.net/pucker/article/details/41843511 上一篇文章<iOS 8界面自动布局系列-1>简要介绍了iOS界面布局方式 ... 
- MSSQL 2005数据库与SP4补丁安装
			Sql Server 2005 正确安装之前的win7配置: http://wenku.baidu.com/link?url=6T3jzVnu2XY_sfqfe9ZqQ_6dUOdrZwHc83baW ... 
- CMake实践(1)
			简介: 目录结构t1/main.cpp; t1/CMakeLists.txt 说明: main.cpp: #include <stdio.h> int main(){ printf( ... 
- Storm的本地运行模式示例
			以word count为例,本地化运行模式(不需要安装zookeeper.storm集群),maven工程, pom.xml文件如下: <project xmlns="http://m ... 
- Andriod中绘(画)图----Canvas的使用详解
			http://blog.csdn.net/qinjuning/article/details/6936783 
- HDU 5730 Shell Necklace cdq分治+FFT
			题意:一段长为 i 的项链有 a[i] 种装饰方式,问长度为n的相连共有多少种装饰方式 分析:采用dp做法,dp[i]=∑dp[j]*a[i-j]+a[i],(1<=j<=i-1) 然后对 ... 
- 二分+叉积判断方向  poj 2318 2398
			// 题意:问你每个区域有多少个点 // 思路:数据小可以直接暴力 // 也可以二分区间 #include <cstdio> #include <cstring> #inclu ... 
- web.py处理文件上传
			#coding=utf8 import web urls = ('/','Home', '/upload', 'Upload') app = web.application(urls, globals ... 
