Coder Social home page Coder Social logo

Comments (7)

hengyunabc avatar hengyunabc commented on April 28, 2024

#1

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

https://logback.qos.ch/apidocs/ch/qos/logback/core/AsyncAppenderBase.html#setNeverBlock(boolean)

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

https://logging.apache.org/log4j/log4j-2.9.1/log4j-core/apidocs/org/apache/logging/log4j/core/appender/AsyncAppender.Builder.html#setBlocking(boolean)

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

logback默认buffer size 256

public class AsyncAppenderBase<E> extends UnsynchronizedAppenderBase<E> implements AppenderAttachable<E> {

    AppenderAttachableImpl<E> aai = new AppenderAttachableImpl<E>();
    BlockingQueue<E> blockingQueue;

    /**
     * The default buffer size.
     */
    public static final int DEFAULT_QUEUE_SIZE = 256;

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

log4j默认buffer size 128

public class AsyncAppender extends AppenderSkeleton
  implements AppenderAttachable {
  /**
   * The default buffer size is set to 128 events.
   */
  public static final int DEFAULT_BUFFER_SIZE = 128;

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

log4j2 默认也是 128

@Plugin(name = "Async", category = Core.CATEGORY_NAME, elementType = Appender.ELEMENT_TYPE, printObject = true)
public final class AsyncAppender extends AbstractAppender {

    private static final int DEFAULT_QUEUE_SIZE = 128;

from logger.api.

hengyunabc avatar hengyunabc commented on April 28, 2024

已经发布 0.2.7

<dependency>
    <groupId>com.taobao.middleware</groupId>
    <artifactId>logger.api</artifactId>
    <version>0.2.7</version>
</dependency>

from logger.api.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.