搜索资源列表
procon
- 生产者消费者同步问题,用于模拟都线程的并行与互斥-Producer consumer synchronization, threads are used to simulate parallel and mutually exclusive
pro_con.tar
- 使用C语言实现了经典的生产者消费者问题。-Producer and consumer problem implemented in C
java_wait_notify_notifyall
- java 多线程编程,演示了线程等待,唤醒。可以达到并行计算。利用著名操作系统的生产者与消费者说了原理。-java multithreaded programming that demonstrates thread waiting, wake up. Parallel computing can be achieved. Using well-known operating system that the principle of producers and consumers.
ProduceAndConsume
- 生产者消费者模型 使用多媒体计时器 完全了解多线程-produce and consume model using media timer more thread
thread
- 多线程循环缓冲程序,有关生产者和消费者在仓库的处理等问题。-Multi-threaded circular buffer program, the producers and consumers in the warehouse processing.
KafkaDemo
- Kafka是一个高吞吐量分布式消息系统。linkedin开源的kafka。 Kafka就跟这个名字一样,设计非常独特。首先,kafka的开发者们认为不需要在内存里缓存什么数据,操作系统的文件缓存已经足够完善和强大,只要你不搞随机写,顺序读写的性能是非常高效的。kafka的数据只会顺序append,数据的删除策略是累积到一定程度或者超过一定时间再删除。Kafka另一个独特的地方是将消费者信息保存在客户端而不是MQ服务器,这样服务器就不用记录消息的投递过程,每个客户端都自己知道自己下一次应该从什么地