PilotEdit is nice Windows editor for huge files.
There is two versions:
Monday, December 14, 2015
Thursday, December 3, 2015
JPA Cache behavior with JPQL Update and Delete queries
JPA experience desynchronization between read data and cache while executing modifying queries. Even in the same application. It is helpful to know JPA behavior to avoid cache issues.
Delete queries: deleting all rows with JPQL will result removing them from database but they will stay in both caches.
The 1st level, or
If there are other applications, or other application servers accessing the same database, then stale data can become a bigger issue. Read-only objects, and inserting new objects should not be an issue. New objects should get picked up by other servers even when using caching as queries typically still access the database. It is normally only find() operations and relationships that hit the cache. Updated and deleted objects by other applications or servers can cause the 2nd level cache to become stale.
For deleted objects, the only issue is with find() operations, as queries that access the database will not return the deleted objects. A find() by the object's Id could return the object if it is cached, even if it does not exist. This could lead to constraint issues if you add relations to this object from other objects, or failed updates, if you try to update the object. Note that these can both occur without caching, even with a single application and server accessing the database. During a transaction, another user of the application could always delete the object being used by another transaction, and the second transaction will fail in the same way. The difference is the potential for this concurrency issue to occur increases.
For updated objects, any query for the objects can return stale data. This can trigger optimistic lock exceptions on updates, or cause one user to overwrite another user's changes if not using locking. Again note that these can both occur without caching, even with a single application and server accessing the database. This is why it is normally always important to use optimistic locking. Stale data could also be returned to the user.
Some JPA providers also support refreshing options in their 2nd level cache. One option is to always refresh on any query to the database. This means that find() operations will still access the cache, but if the query accesses the database and brings back data, the 2nd level cache will be refreshed with the data. This avoids queries returning stale data, but means there will be less benefit from caching. The cost is not just in refreshing the objects, but in refreshing their relationships. Some JPA providers support this option in combination with optimistic locking. If the version value in the row from the database is newer than the version value from the object in the cache, then the object is refreshed as it is stale, otherwise the cache value is returned. This option provides optimal caching, and avoids stale data on queries. However objects returned through find() or through relationships can still be stale. Some JPA providers also allow find() operation to be configured to first check the database, but this general defeats the purpose of caching, so you are better off not using a 2nd level cache at all. If you want to use a 2nd level cache, then you must have some level of tolerance to stale data.
Source: https://en.wikibooks.org/wiki/Java_Persistence/Caching
In short
Update queries: Lets have an update statement, which will update all rows in the database (no where cause). It will be executed on the database itself only - updating first level cache and second level cache will not be executed. Next time you access some row via that cache, you will get the old value (if the cache has not been invalidated because of timeout).Delete queries: deleting all rows with JPQL will result removing them from database but they will stay in both caches.
1st Level Cache
If you bypass JPA and execute DML directly on the database, either through native SQL queries, JDBC, or JPQLUPDATE or DELETE
queries, then the database can be out of synch with the 1st level
cache. If you had accessed objects before executing the DML, they will
have the old state and not include the changes. Depending on what you
are doing this may be ok, otherwise you may want to refresh the affected
objects from the database.The 1st level, or
EntityManager cache can also span transaction boundaries in JPA. A JTA managed EntityManager
will only exist for the duration of the JTA transaction in JEE.
Typically the JEE server will inject the application with a proxy to an EntityManager, and after each JTA transaction a new EntityManager will be created automatically or the EntityManager will be cleared, clearing the 1st level cache. In an application managed EntityManager, the 1st level cache will exist for the duration of the EntityManager. This can lead to stale data, or even memory leaks and poor performance if the EntityManager is held too long. This is why it is generally a good idea to create a new EntityManager per request, or per transaction. The 1st level cache can also be cleared using the EntityManager.clear() method, or an object can be refreshed using the EntityManager.refresh() method.2nd Level Cache
If the application is the only application and server accessing the database there is little issue with the 2nd level cache, as it should always be up to date. The only issue is with DML, if the application executes DML directly to the database through native SQL queries, JDBC, or JPQL UPDATE or DELETE queries. JPQL queries should automatically invalidate the 2nd level cache, but this may depend on the JPA provider. If you use native DML queries or JDBC directly, you may need to invalidate, refresh or clear the objects affected by the DML.If there are other applications, or other application servers accessing the same database, then stale data can become a bigger issue. Read-only objects, and inserting new objects should not be an issue. New objects should get picked up by other servers even when using caching as queries typically still access the database. It is normally only find() operations and relationships that hit the cache. Updated and deleted objects by other applications or servers can cause the 2nd level cache to become stale.
For deleted objects, the only issue is with find() operations, as queries that access the database will not return the deleted objects. A find() by the object's Id could return the object if it is cached, even if it does not exist. This could lead to constraint issues if you add relations to this object from other objects, or failed updates, if you try to update the object. Note that these can both occur without caching, even with a single application and server accessing the database. During a transaction, another user of the application could always delete the object being used by another transaction, and the second transaction will fail in the same way. The difference is the potential for this concurrency issue to occur increases.
For updated objects, any query for the objects can return stale data. This can trigger optimistic lock exceptions on updates, or cause one user to overwrite another user's changes if not using locking. Again note that these can both occur without caching, even with a single application and server accessing the database. This is why it is normally always important to use optimistic locking. Stale data could also be returned to the user.
Refreshing
Refreshing is the most common solution to stale data. Most application users are familiar with the concept of a cache, and know when they need fresh data and are willing to click a refresh button. This is very common in an Internet browser, most browsers have a cache of web pages that have been accessed, and will avoid loading the same page twice, unless the user clicks the refresh button. This same concept can be used in building JPA applications. JPA provides several refreshing options, see refreshing.Some JPA providers also support refreshing options in their 2nd level cache. One option is to always refresh on any query to the database. This means that find() operations will still access the cache, but if the query accesses the database and brings back data, the 2nd level cache will be refreshed with the data. This avoids queries returning stale data, but means there will be less benefit from caching. The cost is not just in refreshing the objects, but in refreshing their relationships. Some JPA providers support this option in combination with optimistic locking. If the version value in the row from the database is newer than the version value from the object in the cache, then the object is refreshed as it is stale, otherwise the cache value is returned. This option provides optimal caching, and avoids stale data on queries. However objects returned through find() or through relationships can still be stale. Some JPA providers also allow find() operation to be configured to first check the database, but this general defeats the purpose of caching, so you are better off not using a 2nd level cache at all. If you want to use a 2nd level cache, then you must have some level of tolerance to stale data.
Source: https://en.wikibooks.org/wiki/Java_Persistence/Caching
Friday, November 27, 2015
MSDOS applications run with pause on exit
I have a shortcut to a .BAT file (or any kind of DOS application). I need after its execution, DOS window not to close until i read the output of the program(s).
Adding a line with pause in the end of file is not an option (my file stays in VCS).
Solution: You could change the command of shortcut from this:
c:\path\shortcut.bat
to this:
c:\path\shortcut.bat & pause
You will get an message "Press any key to continue" and you will read the output of the program.
Adding a line with pause in the end of file is not an option (my file stays in VCS).
Solution: You could change the command of shortcut from this:
c:\path\shortcut.bat
to this:
c:\path\shortcut.bat & pause
You will get an message "Press any key to continue" and you will read the output of the program.
Thursday, November 26, 2015
Best shortcuts for IntelliJ Idea
| Open class by name | Ctrl + N |
| Show members | Ctrl+F12 |
| Go to implementation | Ctrl + Alt + B |
| Open file by name | Ctrl + Shift + N |
| Jump to next/prev cursor position | Alt + left/right arrow |
| Show in Project | Alt + F1 + Enter |
Wednesday, November 25, 2015
Install Java JDK/JRE on Debian jessie with 'apt-get install'
Issue: default JDK for Debian 8 is JDK 7. I need a maintainable way to upgrade it to JDK 8.
Steps:
1. Edin file /etc/apt/sources.list and add this line on the bottom:
deb http://http.debian.net/debian jessie-backports main
2. sudo apt-get update
3. sudo apt-get install openjdk-8-jdk
4. test it as this:
java -version
If the result shows version 7, you could check the names of JDK7 packages and remove them
4.1. Check older JDK packages:
dpkg -l | grep openjdk
4.2. Remove your older JDK packages, e.g.:
Solved.
Steps:
1. Edin file /etc/apt/sources.list and add this line on the bottom:
deb http://http.debian.net/debian jessie-backports main
2. sudo apt-get update
3. sudo apt-get install openjdk-8-jdk
4. test it as this:
java -version
If the result shows version 7, you could check the names of JDK7 packages and remove them
4.1. Check older JDK packages:
dpkg -l | grep openjdk
4.2. Remove your older JDK packages, e.g.:
apt-get purge openjdk-7-jdk
apt-get purge openjdk-7-jre
apt-get purge openjdk-7-jre-headless
Solved.
Tuesday, November 24, 2015
JAMon - nice and simple java monitor for measuring code performance in Java
General information
Official site: http://jamonapi.sourceforge.net/A SourceForge project
Maven dependency
Place in pom.xml: <dependencies>
<dependency>
<groupId>com.jamonapi</groupId>
<artifactId>jamon</artifactId>
<version>2.81</version>
</dependency>
</dependencies>
Example 1
Code:Output:
import com.jamonapi.*; public class MonitorTest { public static void main(String[] args) throws Exception { Monitor mon=null; for (int i=1; i<=10; i++) { mon = MonitorFactory.start("myFirstMonitor"); Thread.sleep(100+i); mon.stop(); } System.out.println(mon); // toString() method called } }
Example 2
Tuesday, November 10, 2015
Размишления за DDR паметта - DDR1, DDR2, DDR3, DDR4
Базова честота и ефективна честота
DDR паметта (ddr1, ddr2, ddr3, ddr4) има базова честота и ефективна честота. Ефективната честота е двойно по-голяма от базовата. При ddr2-800, базовата е 400MHz. Това са теоретично 3200 МБ/с. Но при DDR2-800 се постигат теоретични 6400 МБ/с.От къде идва удвояването?
Subscribe to:
Posts (Atom)