Mahesh Parahar has Published 191 Articles

Difference between Apache Kafka and Flume

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:52:32

777 Views

Kafka and Flume both are used for real time event processing system. They both are developed by Apache. Kafka is a publish-subscribe model messaging system. It can be used to communicate between publisher and subscriber using topic. One of the best features of Kafka is, it is highly available and ... Read More

Difference between Apache Kafka and Kinesis

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:50:11

165 Views

Apache Kafka and Kinesis both software tool is to processing data stream in real time. Apache kafka is developed by linked-in and it is written in Scala and java. Kinesis is developed and managed by Amazon. It can be only used as a services.According to the amazon documentation −Amazon Kinesis ... Read More

Difference between OLAP and OLTP

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:39:42

27K+ Views

OLAP  stands for On-Line Analytical Processing. It is used for analysis of database information from multiple database systems at one time such as sales analysis and forecasting, market research, budgeting and etc. Data Warehouse is the example of OLAP system.OLTP stands for On-Line Transactional processing. It is used for maintaining ... Read More

Difference between monolithic and microservices architecture

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:37:48

15K+ Views

Monolithic architecture  is built as one large system and is usually one code-base. Monolithic application is tightly coupled and entangled as the application evolves, making it difficult to isolate services for purposes such as independent scaling or code maintainability.It extremely difficult to change technology or language or framework because everything ... Read More

Difference between ArrayBlockingQueue and ArrayDeque

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:35:13

464 Views

ArrayBlockingQueue stores elements in FIFO order. Insertion of element always happened at the tail of the queue and removal of the element always happened from the head of the queue.  It is thread safe and It is bounded array queue therefore once created, the capacity cannot be changed. It is ... Read More

Difference between OpenId and OAuth

Mahesh Parahar

Mahesh Parahar

Updated on 27-Jan-2020 10:29:12

454 Views

OAuth is designed for providing authorization of the third party without providing password. It is http based. OAuth provides an access token that can be exchanged for any supported assertion via an API.OpenId is designed for authentication. In openId third-party authenticate your users for you, by using accounts they already ... Read More

Mathematical Logic Statements and Notations

Mahesh Parahar

Mahesh Parahar

Updated on 21-Jan-2020 12:20:37

5K+ Views

PropositionA proposition is a collection of declarative statements that has either a truth value "true” or a truth value "false". A propositional consists of propositional variables and connectives. We denote the propositional variables by capital letters (A, B, etc). The connectives connect the propositional variables.PredicateA predicate is an expression of ... Read More

Vertex Covering

Mahesh Parahar

Mahesh Parahar

Updated on 21-Jan-2020 12:18:24

299 Views

A covering graph is a subgraph that contains either all the vertices or all the edges corresponding to some other graph. A subgraph that contains all the vertices is called a line/edge covering. A subgraph that contains all the edges is called a vertex covering.Let 'G' = (V, E) be ... Read More

Difference between the and$ operator in php

Mahesh Parahar

Mahesh Parahar

Updated on 13-Jan-2020 06:43:02

491 Views

$ operatorOperator is used to define variables in php. For example, message. Such variables can contain any type of value like int, string, etc.$$ operator$$ is a special operator that contains the name of another variable and can be used to access the value of that variable.ExampleFollowing the example, shows ... Read More

Difference between the AND and && operator in php

Mahesh Parahar

Mahesh Parahar

Updated on 13-Jan-2020 06:39:02

425 Views

'AND' Logical operator'AND' operator is a logical AND operator but has low precedence to = operator.'&&' Logical operator'&&' is also a logical AND operator but has high precedence to = operator.ExampleFollowing the example, shows the difference of 'AND' vs '&&' operators. Live Demo    PHP Example   ... Read More

Previous 1 ... 7 8 9 10 11 ... 20 Next
Advertisements