-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathREADME.txt
More file actions
23 lines (15 loc) · 942 Bytes
/
README.txt
File metadata and controls
23 lines (15 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Demonstrates a bunch of useful Mappers for use with the App Engine Mapreduce library
The Mapper library can be found here:
http://code.google.com/p/appengine-mapreduce
This project includes sample code for using the Java version of this
library. Code samples include:
- Changing all Strings to lowercase across all Entities
- Changing all Strings to lowercase across all Entities using a mutation pool (more efficient)
- Deleting all Entities of a given Kind
- Counting all the words across all Entities, then using a callback URL to save them
- Taking an input in the Mapper interface
- Importing data from a CSV file into the datastore
The introductory blog post to the Mapper API can be found here:
http://ikaisays.com/2010/07/09/using-the-java-mapper-framework-for-app-engine/
A follow up post about reading input from the Blobstore can be found here:
http://ikaisays.com/2010/07/09/using-the-java-mapper-framework-for-app-engine/