Skip to main content

Posts

Showing posts with the label mongoDB

Integrating Elastic Search With Mongodb Using No-SQL

An insight about search engine: An application which provides the searched results of documents over the web for some itemized keywords. Here a series of document are found out which contains those specified keywords. Moreover, search engine is a pack of programs usually framed to be the Systems. More often than, Web Search engines perform its work by transmitting the data packets to retrieve the maxim amount of docs. Then an Indexer goes through these documents and formulates an Index depending on word count for every document. Several search engines use a varied algorithm to build Indices in such a way that uniquely worthy outcome is delivered to each & every query. Elastic search, Bobo Search, Index Tank, Apache Solr, Summa, Compass, Katta, Constellio ETC. are some of the search engines which are available in the Market. Also, every search engine has their own idiosyncrasy. An insight about Elastic search: Elastic Search is an immensely extensive Open Source sear...
Learn Meteor and Build a real-time polling app Install Meteor download for windows: https://install.meteor.com/windows install for osx/linux: curl https://install.meteor.com/ | sh open cmd and type meteor --version Meteor comes with a few demo applications that you can try out. If you want to check out a few demo apps now, you can go into your command line and grab the demo application using: // todo sample app meteor create --example todos // example mobile application meteor create --example localmarket Once you create a demo app, just cd into that project and run the application with: meteor This will grab the necessary packages, bundle all the css and js, start your application using a Node server, and make it viewable in your browser. http://localhost:3000 Here is the sample Todos application which is quite good looking: meteor-demo-todos Definitely click around the files in these demo applications and you’ll see how Meteor apps tick. Let’s move onto creating our own a...