[GUEST ACCESS MODE: Data is scrambled or limited to provide examples. Make requests using your API key to unlock full data. Check https://lunarcrush.ai/auth for authentication information.]

@SumitM_X Avatar @SumitM_X SumitM

SumitM posts on X about redis, what is, if you, your api the most. They currently have XXXXXX followers and 1670 posts still getting attention that total XXXXXXX engagements in the last XX hours.

Engagements: XXXXXXX #

Engagements Line Chart

Mentions: XX #

Mentions Line Chart

Followers: XXXXXX #

Followers Line Chart

CreatorRank: XXXXXXX #

CreatorRank Line Chart

Social Influence

Social category influence stocks countries automotive brands celebrities ufc technology brands

Social topic influence redis #1, what is, if you, your api #1, loading #90, consistency #7, render, realtime, virtual, panama

Top accounts mentioned or mentioned by @ufc @espnplus @visitabudhabi @inabudhabi @champrds @riyadhseason @gharkekalesh @espn @hdfcbank @kchimaev @sumitmx @dovysimumma @sstricklandmma @benoitstdenis @alexpereiraufc @merabdvalishvil @dricusduplessis @alpuhap @dustinpoirier @harmonyhoney

Top assets mentioned Morgan Stanley (MS) Tesla, Inc. (TSLA)

Top Social Posts

Top posts by engagements in the last XX hours

"As a Reactjs developer Please learn : X. Advanced State Management - Redux & Redux Toolkit - Context API - Recoil or Zustand X. React Performance Optimization - Memoization (React.memo useMemo useCallback) - Code Splitting - React Profiler X. Component Design Patterns - Higher-Order Components (HOCs) - Render Props - Custom Hooks X. Server-Side Rendering (SSR) - Next.js - Hydration X. TypeScript with React - Type Safety - Advanced Types and Generics X. Testing - React Testing Library - End-to-End Testing (Cypress Playwright) - Mocking and Stubbing X. React Ecosystem and Tooling - Webpack and"
X Link 2025-10-08T16:29Z 28.4K followers, 142.8K engagements

"Is this true"
X Link 2025-11-20T09:14Z 28.4K followers, 8307 engagements

"As a backend developer living in 2025 Plase learn 👇 X. Cloud-Native Development (AWS/GCP/Azure + Kubernetes) Backend is shifting heavily to scalable distributed cloud systems. Knowing Kubernetes Docker CI/CD and cloud SDKs is important. X. Event-Driven Architecture & Messaging Systems learn tools like Apache Kafka RabbitMQ and Redis Streams for decoupled real-time systems. X. API Design & Documentation (REST + GraphQL + OpenAPI) Clean versioned well-documented APIs are non-negotiable. Postman Swagger GraphQL skills . X. Performance Optimization & Observability Know how to profile trace and"
X Link 2025-11-28T16:16Z 28.3K followers, 48.9K engagements

"As a Java Dev how many of these XX terms are you aware of X. VarHandles X. Records X. Sealed Classes X. Virtual Threads (Project Loom) X. Pattern Matching X. JPMS (Modules) X. ZGC X. Shenandoah X. GraalVM XX. Project Panama"
X Link 2025-11-29T10:39Z 28.4K followers, 15.1K engagements

"If you want to start with design patterns start with these X most useful ones (most likely to code and being asked in interviews): X. Factory Pattern X. Singleton Pattern X. Observer Pattern X. Builder Pattern X. Strategy Pattern X. Decorator Pattern"
X Link 2025-11-29T15:03Z 28.4K followers, 27.3K engagements

"As a developer do you know what is the difference between Git GitHub GitLab and Bitbucket"
X Link 2025-11-30T16:38Z 28.4K followers, 29.1K engagements

"As a developer are you also confused with these two terms - Reverse Proxy and Load Balancer. Let's understand these terms ; Reverse Proxy A reverse proxy sits in front of your application servers and forwards client requests to them. Its purpose is not just distribution but also: SSL termination (handling HTTPS) Authentication and authorization Caching responses Hiding internal server details Request/response transformation Examples: NGINX Apache HAProxy. Load Balancer A load balancer is a type of reverse proxy but with a narrower goal: distribute incoming traffic across multiple servers. Its"
X Link 2025-12-02T09:04Z 28.4K followers, 21.6K engagements

"As a backend architect these are XX things that you should learn"
X Link 2025-12-02T09:12Z 28.4K followers, 14.4K engagements

"Your API is public and bots are flooding login attempts. What do you do"
X Link 2025-12-03T05:28Z 28.4K followers, 102.9K engagements

"" Explain SOLID principles " is one of the most asked interview questions. I see candidates usually struggling to explain Liskov's Substitution Principle. Covered it in the book to explain it perfectly :"
X Link 2025-12-08T13:16Z 28.4K followers, 6353 engagements

"@VittoStack @0xThiru Sorry but Who is he"
X Link 2025-12-08T17:04Z 28.4K followers, 5102 engagements

"What is salting and why do we salt passwords"
X Link 2025-12-03T05:53Z 28.5K followers, 1.9M engagements

"You enabled @ Async and your API became slower. Why did thay happen"
X Link 2025-12-06T10:06Z 28.5K followers, 35.5K engagements

"Interviewer: You said your microservice is stateless. What does that mean and why is it important This is a common trap question in backend interviews. Many candidates just say: It doesnt store session but dont explain why that matters. Lets break it down: What does "stateless" actually mean A stateless service doesnt store any info about previous requests. Every request is treated like it's coming from scratch no memory of "what happened before." Why is that useful X. Easier to scale You can add more instances without worrying about where a user's session is stored. X. Any instance can serve"
X Link 2025-12-07T09:29Z 28.5K followers, 25.5K engagements

"Was asked in Morgan Stanley :"
X Link 2025-12-08T04:04Z 28.5K followers, 7069 engagements

"What should i do with this small backyard space .I have zero gardening skills but willing to learn"
X Link 2025-12-08T09:24Z 28.5K followers, 3934 engagements

"What design principle(s) is below code breaking interface Trader void executeTrade(); void auditTrade(); void manageRisk(); class FrontOfficeTrader implements Trader public void executeTrade() /* does trade */ public void auditTrade() throw new UnsupportedOperationException(); public void manageRisk() throw new UnsupportedOperationException();"
X Link 2025-12-08T18:05Z 28.5K followers, 16.1K engagements

"A premium customer refuses to accept being throttled. How do you design "priority-based rate limiting""
X Link 2025-12-09T11:45Z 28.5K followers, 8090 engagements

"If you see multithreading in Java JD cover this checklist before going for an interview :"
X Link 2025-12-09T12:47Z 28.5K followers, 8793 engagements

"Hashmap is the favorite Java Collection of interviewers . You might get a coding problem where you need to use it but be prepared for some theoretical questions as well like below : - The concept of hashing - Collision resolution in HashMap - Use of equals () and hashCode () and their importance in HashMap - The benefit of the immutable object as key -Race condition on HashMap in Java - Resizing of Java HashMap - How null key is handled in HashMap - HashMap Changes in JDK 1.8"
X Link 2025-12-10T14:05Z 28.5K followers, 13K engagements

"As a Reactjs developer Please learn : X. Advanced State Management - Redux & Redux Toolkit - Context API - Recoil or Zustand X. React Performance Optimization - Memoization (React.memo useMemo useCallback) - Code Splitting - React Profiler X. Component Design Patterns - Higher-Order Components (HOCs) - Custom Hooks X. Server-Side Rendering (SSR) - Next.js - Hydration X. TypeScript with React - Type Safety - Advanced Types and Generics X. Testing - React Testing Library - End-to-End Testing (Cypress Playwright) - Mocking and Stubbing X. React Ecosystem and Tooling - Webpack and Babel - ESLint"
X Link 2025-12-05T03:28Z 28.5K followers, 82.2K engagements

"Your API needs to process huge JSON payloads (520 MB) from clients. How do you design it so parsing alone doesnt choke your CPU"
X Link 2025-12-11T13:23Z 28.5K followers, 63.9K engagements

"You are building a microservice that handles read and write operations but the write operations cause significant delays for read requests. How can you optimize this"
X Link 2025-11-30T14:13Z 28.4K followers, 21K engagements

"@it_unprofession With Zero Trust policy do you drive that Tesla ever in auto pilot mode"
X Link 2025-12-02T16:28Z 28.4K followers, 36.3K engagements

"@mmaonpoint Just how good is Conor McGregor"
X Link 2025-12-02T17:10Z 28.4K followers, 3749 engagements

"@abhilashtwt No I have Java MERN React React Native books"
X Link 2025-12-09T05:53Z 28.4K followers, 1506 engagements

"As a backend engineer. Please learn: - DB - System Design - Algorithms - API design - API Security - CI/CD - DS - Docker/ Kubernetes - Caching - Messaging Stop jumping from one language to the other"
X Link 2025-10-19T06:00Z 28.5K followers, 206.7K engagements

"For each department fetch the employee who got the maximum increase in salary compared to last year. Table: salary(emp_id dept year salary)"
X Link 2025-12-06T17:17Z 28.5K followers, 9494 engagements

"As a backend dev in 2025 learn these XX skills to keep you relevant in this Job market : X. API Design - REST/GraphQL/gRPC X. Authentication & Authorization - OAuth2 JWT OpenID Connect Passkeys X. Databases - SQL NoSQL sharding indexing query tuning X. Caching - Redis CDN edge caching strategies X. Event-Driven Systems - Kafka Pulsar streaming pipelines X. Concurrency & Async - reactive programming structured concurrency X. Distributed Systems - microservices service mesh eventual consistency X. Security - HTTPS encryption zero trust OWASP top XX X. Observability - logging tracing metrics"
X Link 2025-11-25T13:12Z 28.5K followers, 75.8K engagements

"As a frontend engineer. Please learn: - JavaScript/TypeScript - Responsive Design (CSS Flexbox Grid) - Performance Optimization (lazy loading code splitting tree shaking memoization) - Web Security (CORS XSS CSRFContent Security Policy Secure Cookies) - Testing (Jest Cypress Enzyme) - Build Tools (Webpack Vite Babel) - Version Control (Git) - Browser DevTools & Debugging - Accessibility (WCAG standards) - Progressive Web Apps (PWA) - Component Architecture (Atomic Design Higher-Order Components) - Micro Frontends - API Integration (REST GraphQL WebSockets) - Testing Strategies (Unit"
X Link 2025-12-05T17:40Z 28.5K followers, 73.5K engagements

"One of your microservices maintains user sessions (i.e. its stateful). How would you scale such a service to handle more users while maintaining session consistency"
X Link 2025-12-07T12:59Z 28.5K followers, 15.4K engagements

"Gone are the days when Java interviews were about HashMap vs Hashtable OOP pillars String vs StringBuilder or What is JVM The golden period of 2022 is gone. Todays Java interviews focus on: Real microservices design (timeouts retries circuit breakers idempotency) Distributed system thinking (consistency partial failures message reprocessing) Spring Boot internals (auto-config AOP proxies startup bottlenecks) Database & caching strategy (query tuning indexes connection pool issues cache stampedes eviction strategy) Messaging systems (Kafka partitions consumer lag backpressure exactly-once"
X Link 2025-12-09T04:21Z 28.5K followers, 48.9K engagements

"Where would you choose setter injection over constructor injection and vice versa"
X Link 2025-12-10T10:55Z 28.5K followers, 8858 engagements

"Was asked in Wells Fargo :"
X Link 2025-12-11T11:39Z 28.5K followers, 2839 engagements

"As a backend engineer. Please learn: - System Design (scalability microservices) -APIs (REST GraphQL gRPC) -Database Systems (SQL NoSQL) -Distributed Systems (consistency replication) -Caching (Redis Memcached) -Security (OAuth2 JWT encryption) -DevOps (CI/CD Docker Kubernetes) -Performance Optimization (profiling load balancing) -Cloud Services (AWS GCP Azure) -Monitoring (Prometheus Grafana) Pick up a language. Stop jumping from one language to the other"
X Link 2025-12-11T12:16Z 28.5K followers, 82.6K engagements

"If interested in front-end development: - Responsive Design (CSS Flexbox Grid) - Performance Optimization (lazy loading code splitting tree shaking memoization) - Web Security (CORS XSS CSRFContent Security Policy Secure Cookies) - Testing (Jest Cypress Enzyme) - Build Tools (Webpack Vite Babel) - Version Control (Git) - Browser DevTools & Debugging - Accessibility (WCAG standards) - Progressive Web Apps (PWA) - Component Architecture (Atomic Design Higher-Order Components) - Micro Frontends - API Integration (REST GraphQL WebSockets) - Testing Strategies (Unit Integration End-to-End) - CI/CD"
X Link 2025-12-11T15:52Z 28.5K followers, 1249 engagements