[JBoss JIRA] (ISPN-11563) Ensure we can use a non blocking thread pool for a blocking one with Loom
by Will Burns (Jira)
Will Burns created ISPN-11563:
---------------------------------
Summary: Ensure we can use a non blocking thread pool for a blocking one with Loom
Key: ISPN-11563
URL: https://issues.redhat.com/browse/ISPN-11563
Project: Infinispan
Issue Type: Enhancement
Components: Core
Reporter: Will Burns
Project Loom will add in Fibers and continuations. https://issues.redhat.com/browse/ISPN-11510 already adds in creating virtual threads. However we need to ensure that we can configure a system where the blocking and non blocking executors can point to the same thread pool since Loom will handle the continuation as needed.
We will have to test if these keeps performance the same as well, since the blocking call will still stop that processing, it just can run a different operation while the blocking operation completes.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years
[JBoss JIRA] (ISPN-11561) Remove extra thread in BlockingTaskAwareExecutorServiceImpl
by Will Burns (Jira)
Will Burns created ISPN-11561:
---------------------------------
Summary: Remove extra thread in BlockingTaskAwareExecutorServiceImpl
Key: ISPN-11561
URL: https://issues.redhat.com/browse/ISPN-11561
Project: Infinispan
Issue Type: Sub-task
Components: Core
Reporter: Will Burns
Assignee: Will Burns
Fix For: 11.0.0.Dev04
The BlockingTaskAwareExecutorServiceImpl spawns a controller thread to handle requests. We should be able to remove that thread and instead use an idea similar to rxjava with processing in a single invoked thread instead as the operations it spawns are non blocking.
We should also optimize calls to avoid O(n) calls like size.
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years
[JBoss JIRA] (ISPN-11560) Allow copy source code from document without markdown
by Donald Naro (Jira)
Donald Naro created ISPN-11560:
----------------------------------
Summary: Allow copy source code from document without markdown
Key: ISPN-11560
URL: https://issues.redhat.com/browse/ISPN-11560
Project: Infinispan
Issue Type: Enhancement
Components: Documentation
Affects Versions: 10.1.3.Final
Reporter: Donald Naro
Assignee: Donald Naro
When copying source code from a document that has markdowns like : ( 1 ), ( 2 ) the markdowns are present in the clipboard.
Example:
{noformat}
ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
clientBuilder
.addServer()
.host("127.0.0.1")
.port(11222)
.security()
.ssl()
// Server SNI hostname.
.sniHostName("myservername") 1
// Server certificate keystore.
.trustStoreFileName("/path/to/truststore") 2
.trustStorePassword("truststorepassword".toCharArray())
// Client certificate keystore.
.keyStoreFileName("/path/to/client/keystore") 3
.keyStorePassword("keystorepassword".toCharArray());
RemoteCache<String, String> cache=remoteCacheManager.getCache("secured");
{noformat}
I would like to copy only the source code without 1, 2, 3
--
This message was sent by Atlassian Jira
(v7.13.8#713008)
6 years