Skip to content

Instantly share code, notes, and snippets.

View DineshDevaraj's full-sized avatar
💭
A ordinary software developer

Dinesh Devaraj DineshDevaraj

💭
A ordinary software developer
View GitHub Profile
@DineshDevaraj
DineshDevaraj / distributed-storage
Last active July 22, 2020 05:41
Tamil Nadu police department CCTV recordings distributed storage
Hello Sir,
In verge of twin murder by police in Sathankulam, I would like
to bring to your notice that the need of the hour is to establish
live streaming of every police station CCTV to a centralized
monitoring facility most propably SP Office
The thought of superior officers monitoring them will deter the
subordinates from getting involved in illegal activities like the
@DineshDevaraj
DineshDevaraj / nodejs_vs_java_for_aws_lambda.md
Created November 4, 2024 04:38
Node.js or Java for AWS Lambda

It depends on your specific use case and requirements. Here are some considerations:

Java

  • Performance: Java can offer better performance for long-running tasks due to its JVM optimizations.
  • Cold Start: Java has longer cold start times compared to Node.js.
  • Libraries: Rich ecosystem of libraries and frameworks.
  • Use Case: Suitable for CPU-intensive tasks and applications that require strong type safety.

Node.js

  • Performance: Faster cold start times, which is beneficial for short-lived functions.