Java / Collections
Why do we need to use Java 8 Stream API?
Java 8 Stream API provides the following capabilities.
To perform Database like Operations such as group by, order by operations.
Enables Parallel Operations there by improving performance.
Enables Functional Style programming so we will focus on what to do rather than how to do.
Enables operations to be performed lazily that optimizes performance.
More Related questions...