Coder Social home page Coder Social logo

gridfs_example_java's Introduction

# This project is primarily a set of example Java programs 
# that demonstrate working with MongoDB's GridFS & the metadata field
# sample images are from: http://www.mongodb.org/downloads

# Compile the sample programs
javac GridFsRead.java -classpath .:./mongo-java-driver-2.10.1.jar
javac GridFsStore.java -classpath .:./mongo-java-driver-2.10.1.jar
javac GridFsStoreChunk.java -classpath .:./mongo-java-driver-2.10.1.jar

# make sure mongod is running

# Insert the images into GridFS
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStore PoweredMongoDBbeige50.png beige
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStore PoweredMongoDBblue50.png  blue  
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStore PoweredMongoDBbrown50.png brown
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStore PoweredMongoDBgreen50.png green

java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStoreChunk PoweredMongoDBbeige50.png chunkbeige
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStoreChunk PoweredMongoDBblue50.png  chunkblue  
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStoreChunk PoweredMongoDBbrown50.png chunkbrown
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsStoreChunk PoweredMongoDBgreen50.png chunkgreen

# set an index on the metadata
# open a mongo shell, then:
use imagedb
db.images.files.find().count() // should be 8
db.images.chunks.find().count() // should be 12 
db.images.files.findOne() // notice the meta
db.images.files.ensureIndex({"metadata.color":1})
db.images.files.getIndexes()  // you should see the new index

# query with explain on index
db.images.files.find({"metadata.color":"blue"}).explain()
# the output should include this line: 
"cursor" : "BtreeCursor metadata.color_1",

# read file out, save as color.png
java -classpath .:./mongo-java-driver-2.10.1.jar GridFsRead green
# you should now have a green.png in the current directory

gridfs_example_java's People

Contributors

k0emt avatar

Watchers

Adam J. Mendoza avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.