Systems | Development | Analytics | API | Testing

Tutorial. Flyway migrations with Spring Boot and MySQL

Іn this video tutorial, ORIL`s Lead Software Engineer, Ihor Kosandiak, shows you how to use the Flyway DB migration tool with Spring Boot and MySQL. Flyway, a database migration tool, is rapidly becoming popular in software development due to its user-friendly nature and seamless integration with existing application systems. Additionally, it offers support for a wide range of databases such as PostgreSQL, MySQL, Oracle DB, H2 db, and numerous others.

React.js vs. Next.js: Which Framework is Better, and When?

When React arrived on the scene in 2013, it quickly became the darling of developers by making everything about UI delightful and component-y. Yet as millions embraced React, they also demanded more than just delightful UI. Developers craved snappier performance and better search engine optimization (SEO). That's when Next.js waltzed in, whispered "server-side rendering," and changed the game. Next.js builds on React's legacy and takes it to new horizons.

Streaming Data Pipeline Development

This Meetup will cover how to build applications from some common use cases and highlight tips, tricks, best practices and patterns In this interactive session, Tim will lead participants through how to best build streaming data pipelines. He will cover how to build applications from some common use cases and highlight tips, tricks, best practices and patterns. He will show how to build the easy way and then dive deep into the underlying open source technologies including Apache NiFi, Apache Flink, Apache Kafka and Apache Iceberg.

Model Observability and ML Monitoring: Key Differences and Best Practices

AI has fundamentally changed the way business functions. Adoption of AI has more than doubled in the past five years, with enterprises engaging in increasingly advanced practices to scale and accelerate AI applications to production. As ML models become increasingly complex and integral to critical decision-making processes, ensuring their optimal performance and reliability has become a paramount concern for technology leaders.

eCommerce Load Testing (Step 2): Capture Traffic

In this webinar clip from "Ensuring performance: How major retailers leverage user traffic to validate code changes", Speedscale Co-founder, Nate Lee, explains what comes next after selecting the business-critical APIs to test first: capturing traffic. Capturing traffic for the service can be done through tools like Speedscale, GoReplay, VCR, K6, and JMeter.

The PHP stat cache explained

90% of the time when I explain how the stat cache works in PHP, people are surprised because they expected it to work differently. It was invented to solve a very limited problem when you call several file system related operations on the same file in quick succession. Why should you know how it works? Because sometimes you need to work around the cache with the clearstatcache() function to get PHP code to run without errors.