Openshift

Openshift is the platform offered as software as service. It is developed by Redhat. It is built around Docker containers orchestrated and managed by kubernetes. Openshift automates the build, deployment and management of application. Core Concepts of Openshift: Containers and images Pods and Users Projects and Users Builds and Image Streams Deployments Routes Templates Orchestration Containers (basic units… Continue reading Openshift

Published

Cassandra Database Setup

Cassandra Database Setup Cassandra DB can be set up easily by using the docker image. If you do not have docker installed in your machine, please do it and follow the steps. #Pull the docker imagedocker pull cassandra #Run the docker image in a containerdocker run -p 9042:9042 –name my-cassandra -d cassandra:latest #Stop the docker… Continue reading Cassandra Database Setup

Published

Katharsis (JsonAPI)

Katharsis What’s katharsis?  Elegant and powerful HATEOAS for Java based on JSON API standard. (from http://katharsis.io/) What’s HATEOAS? HATEOAS stands for Hypermedia as the Engine of Application State. It’s a very common concept in browser which we use daily without knowing. HATEOS is, Using Hyperlinks to change the state of an application. For example, our… Continue reading Katharsis (JsonAPI)

Published

Redis – Getting Started

Install redis in mac Install redis  $ brew install redis To start the server, just type ‘redis-server’$ redis-serverGo to redis-cli & test the installation by store & get a key-value pair,$ redis-cli127.0.0.1:6379> set mykey myvalue-for-the-keyOK127.0.0.1:6379> get mykey“myvalue-for-the-key”127.0.0.1:6379>

Published

NoSQL Databases

NoSQL database will give you the option to store your data in different formats which suit your business requirements rather than storing in a traditional way of RDBMS where you used to store in table format. There are different types of NoSQL DBs. We listed down those types in this blogs. Document DB We can… Continue reading NoSQL Databases

Published

Ember Js

Overview Core concepts Object Model Computed properties Router Templates Components Models Managing Dependencies Application Concerns Ember Inspector

Published

OAUTH2 flow types

Oauth2 flow types or grant types: Authorization code flow Implicit flow Resource owner flow Client credential flow 1. Authorization code flow                     If a third party web or mobile application wants access the resources from your server, we should choose this flow. 2. Implicit flow  … Continue reading OAUTH2 flow types

Published