Mysql « playframework « Java Enterprise Q&A





1. [Play Framework]: Performance testing with MySql    stackoverflow.com

I'm trying to implement play in my current job. And my manager asked me how would play framework deal with 1 millions records and MySql (I know that it is silly)...I've ...

2. Uploading images with MYSQL blob type    stackoverflow.com

Let's say I have this model:

@Entity
public class Picture extends Model {
  public Blob image;
  ...
}
When I look the type in mysql database it is just the path to the ...

3. How to update Mysql entry using Playframework    stackoverflow.com

I'm writing a TodoList application using Playframework. I want to update a task but don't know how to update with JPA (I'm just moving from PHP with Zend Framework and don't ...

4. How to use master/slave mysql in play framework    stackoverflow.com

My application is getting a lot of database calls hence I need to start using a distributed master/slave mysql database but I'm having problems configuring play framework! so my first question ...